<?php
namespace app\index\controller;

use think\Db;
use think\Controller;
class Base extends Controller
{
    public function _initialize(){
        $no_check = array("login","login_check");
        $request = \think\Request::instance();
        echo $request->controller();
        echo $request->module();
        echo $request->action();
    }
}

 

相关文章:

  • 2022-12-23
  • 2021-12-12
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-02-01
  • 2021-06-02
猜你喜欢
  • 2021-12-17
  • 2022-12-23
  • 2022-12-23
  • 2021-11-07
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案