用户
 找回密码
 入住 CI 中国社区
搜索
查看: 4732|回复: 3
收起左侧

[版本 2.x] Call to undefined method CI_Controller::ci_controller()在线求解

[复制链接]
发表于 2011-9-7 15:36:30 | 显示全部楼层 |阅读模式
PHP复制代码
class Admlogin extends CI_Controller {
 
        function __construct()
        {
                parent::CI_Controller();
        }
       
        public function index()
        {
                $this->load->view('admlogin.php');
        }
}
复制代码

报错:Call to undefined method CI_Controller::ci_controller() in ...
发表于 2011-9-7 15:50:23 | 显示全部楼层
2.0 要改成 parent::__construct()
请仔细看 CI 的更改记录。
http://codeigniter.org.cn/user_guide/changelog.html
 楼主| 发表于 2011-9-7 16:25:42 | 显示全部楼层
Hex 发表于 2011-9-7 15:50
2.0 要改成 parent::__construct()
请仔细看 CI 的更改记录。
http://codeigniter.org.cn/user_guide/chang ...

谢谢管理员
CIer  发表于 2014-3-19 17:22:34
改用parent::__construct();

本版积分规则