zhaobin693 发表于 2011-9-7 15:36:30

Call to undefined method CI_Controller::ci_controller()在线求解

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 ...

Hex 发表于 2011-9-7 15:50:23

2.0 要改成 parent::__construct()
请仔细看 CI 的更改记录。
http://codeigniter.org.cn/user_guide/changelog.html

zhaobin693 发表于 2011-9-7 16:25:42

Hex 发表于 2011-9-7 15:50 static/image/common/back.gif
2.0 要改成 parent::__construct()
请仔细看 CI 的更改记录。
http://codeigniter.org.cn/user_guide/chang ...

谢谢管理员:P

Anonymous 发表于 2014-3-19 17:22:34

改用parent::__construct();
页: [1]
查看完整版本: Call to undefined method CI_Controller::ci_controller()在线求解