Home > php教程 > php手册 > ThinkPHP 3.2.2 控制器中添加getActionName方法

ThinkPHP 3.2.2 控制器中添加getActionName方法

WBOY
Release: 2016-06-07 11:40:14
Original
1208 people have browsed it

刚升级的ThinkPHP 3.2.2中突然发现,在3.1版本好用的getActionName方法,在ThinkPHP 3.2.2中居然没有
刚升级的ThinkPHP 3.2.2中突然发现,在3.1版本好用的getActionName方法,在ThinkPHP 3.2.2中居然没有,出现了令人胆寒的哭相:
ThinkPHP 3.2.2 控制器中添加getActionName方法
纠结呀,没得办法自己动手丰衣足食,添加进去,按图索骥,根据提示找到Controller.class.php,手动添加如下代码:/**<br>      * 获取当前Action名称<br>      * @access protected<br>      */<br>     protected function getActionName() {<br>         if(empty($this->name)) {<br>             // 获取Action名称<br>             $offset=strrpos(get_class($this), '\\', -10);  // 从尾部第 10 个位置开始查找<br>             $this->name     =   substr(get_class($this),$offset+1,-10);<br>         }<br>         return $this->name;<br>     }然后在可以在控制器中正常是用getActionName()方法获取控制器名称了:$name=$this->getActionName();

AD:真正免费,域名+虚机+企业邮箱=0元

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template