<?php namespace Common\Controller; use Think\Controller; /** * 前后台公用基类 * modify author : Jack * modify time : 2014-7-12 */ class BaseController extends Controller{ public function _initialize() {//全局变量 dump('基类'); $this->cfg(); } }
在Home/Controller/ZixunController.class.php中
<?php namespace Home\Controller; use Common\Controller\BaseController; class ZixunController extends BaseController {public function index() { $result = $this->lists(); dump($result); } }
当然,在前后台还可以创建自己的基类,比如后台建AdminController.class.php继承BaseController.class.php,前台创建HomeController.class.php继承BaseController.class.php各自模块继承各自的基类,这样项目可以更清晰,可以避免重复造轮子,省很多事情,但是必须注意的是每个类必须声明命名空间,但是使用的资源可以在各自的基类中定义之后后面不用在写一次。比如AdminController.class.php继承BaseController.class.php,就不用再写use Think\Controller了,直接使用use Common\Controller\BaseController就可以了。
希望本文所述对大家的ThinkPHP框架程序设计有所帮助。