2013-04-04 45 views

回答

15

__autoload是舊的,不贊成使用自動加載的方式,因爲您只能擁有一個。

您應該使用spl_autoload_register註冊您的自動加載器。例如:

function customCIAutoload($class) 
{ 
if(strpos($class, 'CI_') !== 0) 
{ 
    @include_once(APPPATH . 'core/'. $class . EXT); 
} 
} 

spl_autoload_register('customCIAutoload'); 

這樣,您的自動加載器和作曲家就會快樂地並存。