thinkphp如何继承自己的Action
程序员文章站
2022-06-10 09:27:24
...
thinkphp怎么继承自己的Action
GlobalAction.class.php
IndexAction.class.php
我这么写结果报错,说GlobalAction没有找到
------解决方案--------------------
class IndexAction extends GlobalAction之前,GlobalAction.class.php必须被加载进来,不然肯定会报错的。
------解决方案--------------------
include(__APP__/lib/GlobalAction.class.php)
GlobalAction.class.php
- PHP code
class GlobalAction extends Action{ public function _initialize() { }}
IndexAction.class.php
- PHP code
class IndexAction extends GlobalAction{}
我这么写结果报错,说GlobalAction没有找到
------解决方案--------------------
class IndexAction extends GlobalAction之前,GlobalAction.class.php必须被加载进来,不然肯定会报错的。
------解决方案--------------------
include(__APP__/lib/GlobalAction.class.php)
相关文章
相关视频