本篇文章為大家展示了Zend中AutoLoad機(jī)制的原理是什么,內(nèi)容簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。
創(chuàng)新互聯(lián)是一家專業(yè)提供大安企業(yè)網(wǎng)站建設(shè),專注與成都網(wǎng)站制作、網(wǎng)站建設(shè)、H5建站、小程序制作等業(yè)務(wù)。10年已為大安眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)網(wǎng)站建設(shè)公司優(yōu)惠進(jìn)行中。復(fù)制代碼 代碼如下:
set_include_path(USVN_LIB_DIR . PATH_SEPARATOR . get_include_path());
require_once 'Zend/Loader/Autoloader.php';
$autoloader = Zend_Loader_Autoloader::getInstance();
$autoloader->registerNamespace("Zend_");
$autoloader->registerNamespace("USVN_");
$autoloader->registerNamespace("menus_");
$config = new USVN_Config_Ini(USVN_CONFIG_FILE, USVN_CONFIG_SECTION);
過程分析
首先是設(shè)置了include_path,include_path就是php中調(diào)用include的時(shí)候文件尋找的地址
下面就是 require_once 'Zend/Loader/Autoloader.php';
在Zend/Loader/Autoloader.php文件內(nèi),讀入了Zend/Loader.php, 這個(gè)php定義了Zend_Loader這個(gè)類,這個(gè)類包含了loadClass,loadFile, isReadable(文件是否可讀)等函數(shù)
實(shí)例化Zend_Loader_Autoloader的過程就是調(diào)用其構(gòu)造函數(shù)(這里是使用了單例模式)的過程
它的構(gòu)造函數(shù)中的spl_autoload_register(array(__CLASS__, 'autoload'));將Zend_Loader_Autoloader:autoload作為類自動(dòng)加載函數(shù)。
還做了一個(gè)操作將_internalAutoloader賦值了自身的_autoload
至于這里面是怎么autoload的等會(huì)根據(jù)具體例子查看
接下來調(diào)用了Zend_Loader_Autoloader:registerNamespace("USVN_"),這個(gè)函數(shù)做的事就只是在Zend_Loader_AutoLoader的內(nèi)部屬性_namespaces上掛載一個(gè)key為USVN_和value為true的值。
看到這個(gè)函數(shù)就明白其實(shí)代碼也可以寫成
$autoloader->registerNamespace("Zend_")->registerNamespace("USVN_")
或者
$autoloader->registerNamespace(array("Zend_","USVN_"))
好了,現(xiàn)在到調(diào)用 USVN_Config_Ini類了
這個(gè)類自然走的就是Zend_Loader_Autoloader:autoload("USVN_Config_Ini")
這個(gè)函數(shù)第一步會(huì)去調(diào)用getClassAutoloaders獲取這個(gè)類的AutoLoader。getClassAutoloaders里面增加了對(duì)namespaceAutoloader的選擇和判斷,由于我們很少使用,直接跳過
這里返回的loader打印出來是這樣的
復(fù)制代碼 代碼如下:
Array ( [0] => Zend_Loader_Autoloader Object ( [_autoloaders:protected] => Array ( ) [_defaultAutoloader:protected] => Array ( [0] => Zend_Loader [1] => loadClass ) [_fallbackAutoloader:protected] => [_internalAutoloader:protected] => Array *RECURSION* [_namespaces:protected] => Array ( [Zend_] => 1 [ZendX_] => 1 [USVN_] => 1 [menus_] => 1 ) [_namespaceAutoloaders:protected] => Array ( ) [_suppressNotFoundWarnings:protected] => [_zfPath:protected] => ) [1] => _autoload )
其實(shí)就是前面設(shè)置的_internalAutoloader。
這里就會(huì)實(shí)際調(diào)用Zend_Loader_Autoloader:_autoload ("USVN_Config_Ini")
好了,現(xiàn)在就看到了Zend_Loader_Autoloader:_autoload函數(shù)
$callback = $this->getDefaultAutoloader();
這里會(huì)獲取默認(rèn)的Autoloader,什么是默認(rèn)的Autoloader? 看這個(gè)類初始定義,實(shí)際上是array('Zend_Loader', 'loadClass');
下面自然就調(diào)用的是call_user_func($callback, $class);即Zend_Loader:loadClass("USVN_Config_Ini")
首先Zend_Loader已經(jīng)在AutoLoader.php中被require了
其次我們看看Zend_Loader:loadClass方法,這個(gè)方法第一步是檢查異常,跳過。第二步是將類分隔,拼湊成$file, 比如USVN/Config/Ini.php,下面就直接調(diào)用self::loadFile($file, null, true);
接下來查看self::loadFile,
首先_securityCheck看類名中是否有非法字符,沒有,就include了這個(gè)$file。這里的$file當(dāng)然是相對(duì)路徑,需要拼接上include_path, 記得include_path是在哪里設(shè)置的嗎?在程序的一開始就設(shè)置了!好了,這里就把USVN_Config_Ini這個(gè)類讀取進(jìn)來了。
看到這里你就該明白了,如果你自己定義了一個(gè)類,并且注冊(cè)了Namespace,比如USVN,那么你就應(yīng)該在include_path下面創(chuàng)建一個(gè)同名文件夾(大小寫必須區(qū)分),然后你要引入的相對(duì)的文件路徑名就是以類名的_做分隔讀入的。
上述內(nèi)容就是Zend中AutoLoad機(jī)制的原理是什么,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。
分享文章:Zend中AutoLoad機(jī)制的原理是什么-創(chuàng)新互聯(lián)
當(dāng)前鏈接:http://www.rwnh.cn/article0/ccehio.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供定制網(wǎng)站、外貿(mào)建站、網(wǎng)站制作、Google、品牌網(wǎng)站設(shè)計(jì)、做網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容