$route['about'] = 'core/about';
$route['blog'] = 'core/blog';
$route['press'] = 'core/press';
在网址中显示abc.com/about
如何从网址获取控制器名称?
答案 0 :(得分:2)
答案 1 :(得分:1)
试试这个。
$this->router->fetch_class();
$this->router->fetch_method();
使用fetch_class
获取当前控制器名称并使用fetch_method
获取相关控制器中的当前功能名称。
或者您可以使用核心PHP
echo __CLASS__;
在codeigniter中做同样的事情:
echo $this->router->class;