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();
声明:本文为原创文章,版权归主机之家测评所有,欢迎分享本文,转载请保留出处!