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 に答える