您好,登錄后才能下訂單哦!
怎么在php項目中實現(xiàn)類的自動加載?針對這個問題,這篇文章詳細介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
主要函數(shù):spl_autoload_register() — 注冊給定的函數(shù)作為 __autoload() 的實現(xiàn)
將函數(shù)注冊到SPL __autoload函數(shù)隊列中。如果該隊列中的函數(shù)尚未激活,則激活它們。
如果在你的程序中已經(jīng)實現(xiàn)了__autoload()函數(shù),它必須顯式注冊到__autoload()隊列中。因為spl_autoload_register()函數(shù)會將Zend Engine中的__autoload()函數(shù)取代為spl_autoload()或spl_autoload_call()。
如果需要多條 autoload 函數(shù),spl_autoload_register() 滿足了此類需求。 它實際上創(chuàng)建了 autoload 函數(shù)的隊列,按定義時的順序逐個執(zhí)行。相比之下, __autoload() 只可以定義一次。
<?php // $class 類名 function autoloader_1($class) { include 'classes/' . $class . '.class.php'; } function autoloader_2($class) { include 'classes/' . $class . '.class.php'; } // 可以多次使用,但 __autoload() 函數(shù)只能使用一次。 spl_autoload_register('autoloader_1'); spl_autoload_register('autoloader_2'); // 或者,自 PHP 5.3.0 起可以使用一個匿名函數(shù) spl_autoload_register(function ($class) { include 'classes/' . $class . '.class.php'; });
關(guān)于怎么在php項目中實現(xiàn)類的自動加載問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。