这已被问了几次,我看过教程但我没能做到。我基本上有abc.com/admin然后管理员/控制器。我需要的是为管理区域加载一些语言,帮助程序和库。
class MY_Controller extends CI_Controller{
function __construct(){
parent::__construct();
}
}
class Admin_Controller extends MY_Controller{
function __construct(){
parent::__construct();
file_put_contents('trial.txt','trial data'); //JUST TO SEE IF THAT EVEN WORKS and it is not writing the file either
$this->lang->load('scripts','english');
}
}
除非我在autoload.php中自动加载,否则所有管理区域都不会加载任何内容。我错过了什么?