控制器文件名是Auth.php
class Auth extends MY_Controller {
public function __construct() {
parent::__construct();
//load model
$this->load->model('Auth_model', 'auth');
$this->load->model('Mail', 'mail');
$this->load->library('form_validation');
}
,但继续出现以下错误:
遇到未捕获的异常类型:错误
消息:找不到类“ MY_Controller”
文件名:C:\ xampp \ htdocs \ codeigniter \ application \ controllers \ Auth.php
行号:16
回溯:
文件:C:\ xampp \ htdocs \ codeigniter \ index.php行:315功能: require_once
答案 0 :(得分:0)
您必须创建一个像application/core/MY_Controller.php
这样的文件;
然后在其中发布您的核心功能。 (不要忘记创建__construct()
函数
class MY_Controller extends CI_Controller
{
public function __construct(){
parent::__construct();
}
}
//your other rest codes will be here