我在 application/core/MY_Lang.php 中有核心类,这个类扩展了 CI_Lang 类,并覆盖了基类的构造函数:
class MY_Lang extends CI_Lang {
function __construct()
{
parent::__construct();
}
}
我如何从我的类的构造函数访问数据库对象。
我试图访问 CI 超级对象,但类 CI_Controller 暂时没有加载
if (class_exists('CI_Controller'))
{
$this->CI =& get_instance();
}