thinkphp5获取控制器名、模型名、方法名的代码
thinkphp5获取控制器名、模型名、方法名和thinkphp3.2已经不一样了,使用thinkphp3.2的那种方法已经获取不到了,thinkphp5获取这三个的方法如下。
$request= \think\Request::instance();
dump($request->controller()); //获取控制器名
dump($request->module()); //获取模型名
dump($request->action()); //获取方法名
使用以上代码获取的话,控制器需要
$request= \think\Request::instance();
dump($request->controller()); //获取控制器名
dump($request->module()); //获取模型名
dump($request->action()); //获取方法名
使用以上代码获取的话,控制器需要
class 类名 extends \think\Controller
{
……
}
中国· 上海
添加微信咨询
CopyRight©2009-2019 上海谷谷网络科技有限公司 All Rights Reserved. 沪ICP备11022482号-8
- top
- 在线咨询
-
添加微信咨询