如何在laravel routes.php里获取控制器和action名称
1个回答
展开全部
操作方法:
添加进去代码以后,根据提示找到Controller.class.php,手动添加如下代码:
/**
* 获取当前Action名称
* @access protected
*/
protected function getActionName() {
if(empty($this->name)) {
// 获取Action名称
$offset=strrpos(get_class($this), '\\', -10); // 从尾部第 10 个位置开始查找
$this->name = substr(get_class($this),$offset+1,-10);
}
return $this->name;
}
然后在可以在控制器中使用routes.php方法获取控制器名称了!
添加进去代码以后,根据提示找到Controller.class.php,手动添加如下代码:
/**
* 获取当前Action名称
* @access protected
*/
protected function getActionName() {
if(empty($this->name)) {
// 获取Action名称
$offset=strrpos(get_class($this), '\\', -10); // 从尾部第 10 个位置开始查找
$this->name = substr(get_class($this),$offset+1,-10);
}
return $this->name;
}
然后在可以在控制器中使用routes.php方法获取控制器名称了!
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询