
如何在laravel routes.php里获取控制器和action名称
2个回答
2016-09-09 · 百度知道合伙人官方认证企业
1【专注:Python+人工智能|Java大数据|HTML5培训】 2【免费提供名师直播课堂、公开课及视频教程】 3【地址:北京市昌平区三旗百汇物美大卖场2层,微信公众号:yuzhitc】
向TA提问
关注

展开全部
添加进去代码以后,根据提示找到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方法获取控制器名称了
/**
* 获取当前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方法获取控制器名称了
展开全部
看看这个是否可以解决你的问题
http://www.bcty365.com/content-153-5937-1.html
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询