在 Codeigniter 3 中,可以使用以下代码获取当前活动的类和方法:
$active_controller = $this->router->fetch_class();
$active_function = $this->router->fetch_method();
Codeigniter 4中有这样的功能吗?
在 Codeigniter 3 中,可以使用以下代码获取当前活动的类和方法:
$active_controller = $this->router->fetch_class();
$active_function = $this->router->fetch_method();
Codeigniter 4中有这样的功能吗?
值得一提的是,这些类从未正式成为 CI3 的一部分(https://codeigniter.com/user_guide/installation/upgrade_300.html?highlight=fetch_class)。请记住 CI4 更加灵活,并且路由的定义更加可变我会查看事物的路由方面并从那里提取它(https://codeigniter4.github.io/userguide/incoming/incomingrequest.html#the -请求网址)。