0

我是 codeigniter 的新手,我正在从这个链接的参考中尝试我的第一个应用程序

但我收到以下错误:

Fatal error: Class 'Controller' not found in /var/www/CodeIgniter/application/controllers/helloworld.php on line 2
4

1 回答 1

0

应该这样做

Class Mycontroller Extends CI_Controller
{
    function __construct(){
        parent::__construct();
    }

    //other functions
}

Class Mymodel Extends CI_Model
{
    function __construct(){
        parent::__construct();
    }

    //other functions
}
于 2013-01-11T11:17:54.770 回答