thinkPHP17---操作绑定到类
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thinkPHP17---操作绑定到类相关的知识,希望对你有一定的参考价值。
首先要配置:
"ACTION_BIND_CLASS"=>"TRUE";
控制器类的定义如下:
namespace Home\Controller\Index;
use Think\Controller;
class index extends Controller{
public function run(){
echo ‘执行Index控制器的index操作‘;
}
}
以上是关于thinkPHP17---操作绑定到类的主要内容,如果未能解决你的问题,请参考以下文章