Thinkphp5.1版本相对5.0版本升级了很多地方。
比如我们在Thinkphp5.0中通过以下方法可以获取当前访问的模块名、控制器名、方法名:
use thinkRequest; /* 代码段 */ $module = Request::instance()->module(); $controller = Request::instance()->controller(); $action = Request::instance()->controller();
而在5.1版本中Request类没有instance方法,我们可以通过Facade特性直接静态化调用,具体如下:
use thinkfacadeRequest; /* 代码段 */ $module = Request::module(); $controller = Request::controller(); $action = Request::controller();
未经允许不得转载:吾爱主机之家 » tp5.1怎么获取当前模块名、控制器名、方法名?