function __autoload($class) {
if (strpos($class, 'CI_') !== 0) {
if (file_exists($file = APPPATH . 'core/' . $class . php)) {
include $file;
}
}
}
Run Code Online (Sandbox Code Playgroud)
不推荐使用:不推荐使用 __autoload(),使用 spl_autoload_register() 和致命错误:无法在 codeigniter 中重新声明 __autoload() 错误
codeigniter ×1