<?phpnamespace 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(); ???}}
thinkphp5 tp5 ???获取模块名控制器名方法名
原文地址:http://www.cnblogs.com/zonglonglong/p/8094374.html