萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> php編程 >> php spl_autoload_register與__autoload方法詳解

php spl_autoload_register與__autoload方法詳解

php教程 spl_autoload_register與__autoload方法詳解

在談到框架自動加載類的方面,我大概翻了一下,現在主流的框架系統都使用spl_autoload_register函數,而非__autoload函數。

function my_own_loader($classname)
{
    $class_file = strtolower($classname).".php";
    if (file_exists($class_file)){
        require_once($class_file);
    }
}

spl_autoload_register("my_own_loader");

$a = new A();
__autoload 方法在 spl_autoload_register 後會失效,因為 autoload_func 函數指針已指向 spl_autoload 方法
* 可以通過下面的方法來把 _autoload 方法加入 autoload_functions list

spl_autoload_register( '__autoload' );

此外我們還可以使用我們自定義的加載方法:

第一種函數式:

function my_own_loader($classname)
{
    $class_file = strtolower($classname).".php";
    if (file_exists($class_file)){
        require_once($class_file);
    }
}

spl_autoload_register("my_own_loader");

$a = new A();

第二種類式:class Loader
{
    public static function my_own_loader($classname)
    {
        $class_file = strtolower($classname).".php";
        if (file_exists($class_file)){
            require_once($class_file);
        }
    }
}

// 通過數組的形式傳遞類和方法的名稱
spl_autoload_register(array("my_own_loader","Loader"));

$a = new A();
spl_autoload_register()函數應該是主流框架使用最多的也是非常核心的函數之一,可實現自動注冊函數和類,實現類似__autoload() 函數功能,簡化了類的調用與加載,提高了工作的效率。

支持版本:PHP 5 >= 5.1.2

至於效率問題。php手冊上有如此之話:

bool spl_autoload_register ([ callback $autoload_function ] )

將函數注冊到SPL __autoload函數棧中。如果該棧中的函數尚未激活,則激活它們。貌似他麼指向同一個堆棧,效率上都是大哥二哥的問題

copyright © 萬盛學電腦網 all rights reserved