PHP中spl_autoload_register()函數(shù)用法實例詳解

在了解這個函數(shù)之前先來看另一個函數(shù):__autoload论悴。
一掖棉、__autoload
這是一個自動加載函數(shù),在PHP5中膀估,當我們實例化一個未定義的類時幔亥,就會觸發(fā)此函數(shù)〔齑浚看下面例子:
printit.class.php:

<?php
class PRINTIT {
 function doPrint() {
 echo 'hello world';
 }
}
?>

index.php

<?
function __autoload( $class ) {
 $file = $class . '.class.php';
 if ( is_file($file) ) {
 require_once($file);
 }
}
$obj = new PRINTIT();
$obj->doPrint();?>

運行index.php后正常輸出hello world帕棉。在index.php中,由于沒有包含printit.class.php饼记,在實例化printit時香伴,自動調(diào)用__autoload函數(shù),參數(shù)$class的值即為類名printit具则,此時printit.class.php就被引進來了即纲。
在面向?qū)ο笾羞@種方法經(jīng)常使用,可以避免書寫過多的引用文件博肋,同時也使整個系統(tǒng)更加靈活低斋。
二、spl_autoload_register()
再看spl_autoload_register()匪凡,這個函數(shù)與__autoload有與曲同工之妙膊畴,看個簡單的例子:

<?
function loadprint( $class ) {
 $file = $class . '.class.php';
 if (is_file($file)) {
 require_once($file);
 }
}
spl_autoload_register( 'loadprint' );
$obj = new PRINTIT();
$obj->doPrint();?>

將__autoload換成loadprint函數(shù)。但是loadprint不會像__autoload自動觸發(fā)病游,這時spl_autoload_register()就起作用了巴比,它告訴PHP碰到?jīng)]有定義的類就執(zhí)行l(wèi)oadprint()。
spl_autoload_register() 調(diào)用靜態(tài)方法

<?
class test {
 public static function loadprint( $class ) {
 $file = $class . '.class.php';
 if (is_file($file)) {
  require_once($file);
 }
 }
}
spl_autoload_register( array('test','loadprint') );
//另一種寫法:spl_autoload_register( "test::loadprint" );
$obj = new PRINTIT();
$obj->doPrint();?>

spl_autoload_register
(PHP 5 >= 5.1.2)
spl_autoload_register — 注冊__autoload()函數(shù)
說明
bool spl_autoload_register ([ callback $autoload_function ] )
將函數(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()。
參數(shù)
autoload_function
欲注冊的自動裝載函數(shù)兼砖。如果沒有提供任何參數(shù)奸远,則自動注冊autoload的默認實現(xiàn)函數(shù)spl_autoload()。
返回值
如果成功則返回 TRUE讽挟,失敗則返回 FALSE懒叛。
注:SPL是Standard PHP Library(標準PHP庫)的縮寫。它是PHP5引入的一個擴展庫耽梅,其主要功能包括autoload機制的實現(xiàn)及包括各種Iterator接口或類薛窥。SPL autoload機制的實現(xiàn)是通過將函數(shù)指針autoload_func指向自己實現(xiàn)的具有自動裝載功能的函數(shù)來實現(xiàn)的。SPL有兩個不同的函數(shù)spl_autoload, spl_autoload_call眼姐,通過將autoload_func指向這兩個不同的函數(shù)地址來實現(xiàn)不同的自動加載機制诅迷。

classLOAD
{
 staticfunctionloadClass($class_name)
  {
    $filename= $class_name.".class.php";
 $path= "include/".$filename
    if(is_file($path)) returninclude$path;
  }
}
/**
 * 設(shè)置對象的自動載入
 * spl_autoload_register — Register given function as __autoload() implementation
 */
spl_autoload_register(array('LOAD', 'loadClass'));
/**
*__autoload 方法在 spl_autoload_register 后會失效,因為 autoload_func 函數(shù)指針已指向 spl_autoload 方法
* 可以通過下面的方法來把 _autoload 方法加入 autoload_functions list
*/
spl_autoload_register( '__autoload');

如果同時用spl_autoload_register注冊了一個類的方法和__autoload函數(shù)众旗,那么罢杉,會根據(jù)注冊的先后,如果在第一個注冊的方法或函數(shù)里加載了類文件贡歧,就不會再執(zhí)行第二個被注冊的類的方法或函數(shù)滩租。反之就會執(zhí)行第二個被注冊的類的方法或函數(shù)。

<?php
class autoloader {
  public static $loader;
  public static function init() {
    if (self::$loader == NULL)
      self::$loader = new self ();
    return self::$loader;
  }
  public function __construct() {
    spl_autoload_register ( array ($this, 'model' ) );
    spl_autoload_register ( array ($this, 'helper' ) );
    spl_autoload_register ( array ($this, 'controller' ) );
    spl_autoload_register ( array ($this, 'library' ) );
  }
  public function library($class) {
    set_include_path ( get_include_path () . PATH_SEPARATOR . '/lib/' );
    spl_autoload_extensions ( '.library.php' );
    spl_autoload ( $class );
  }
  public function controller($class) {
    $class = preg_replace ( '/_controller$/ui', '', $class );
    set_include_path ( get_include_path () . PATH_SEPARATOR . '/controller/' );
    spl_autoload_extensions ( '.controller.php' );
    spl_autoload ( $class );
  }
  public function model($class) {
    $class = preg_replace ( '/_model$/ui', '', $class );
    set_include_path ( get_include_path () . PATH_SEPARATOR . '/model/' );
    spl_autoload_extensions ( '.model.php' );
    spl_autoload ( $class );
  }
  public function helper($class) {
    $class = preg_replace ( '/_helper$/ui', '', $class );
    set_include_path ( get_include_path () . PATH_SEPARATOR . '/helper/' );
    spl_autoload_extensions ( '.helper.php' );
    spl_autoload ( $class );
  }
}
//call
autoloader::init ();
?>
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末利朵,一起剝皮案震驚了整個濱河市律想,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌哗咆,老刑警劉巖蜘欲,帶你破解...
    沈念sama閱讀 211,348評論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異晌柬,居然都是意外死亡姥份,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,122評論 2 385
  • 文/潘曉璐 我一進店門年碘,熙熙樓的掌柜王于貴愁眉苦臉地迎上來澈歉,“玉大人,你說我怎么就攤上這事屿衅“D眩” “怎么了?”我有些...
    開封第一講書人閱讀 156,936評論 0 347
  • 文/不壞的土叔 我叫張陵,是天一觀的道長涡尘。 經(jīng)常有香客問我忍弛,道長,這世上最難降的妖魔是什么考抄? 我笑而不...
    開封第一講書人閱讀 56,427評論 1 283
  • 正文 為了忘掉前任细疚,我火速辦了婚禮,結(jié)果婚禮上川梅,老公的妹妹穿的比我還像新娘疯兼。我一直安慰自己,他們只是感情好贫途,可當我...
    茶點故事閱讀 65,467評論 6 385
  • 文/花漫 我一把揭開白布吧彪。 她就那樣靜靜地躺著,像睡著了一般丢早。 火紅的嫁衣襯著肌膚如雪姨裸。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,785評論 1 290
  • 那天香拉,我揣著相機與錄音啦扬,去河邊找鬼。 笑死凫碌,一個胖子當著我的面吹牛扑毡,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播盛险,決...
    沈念sama閱讀 38,931評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼瞄摊,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了苦掘?” 一聲冷哼從身側(cè)響起换帜,我...
    開封第一講書人閱讀 37,696評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎鹤啡,沒想到半個月后惯驼,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,141評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡递瑰,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,483評論 2 327
  • 正文 我和宋清朗相戀三年祟牲,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片抖部。...
    茶點故事閱讀 38,625評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡说贝,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出慎颗,到底是詐尸還是另有隱情乡恕,我是刑警寧澤言询,帶...
    沈念sama閱讀 34,291評論 4 329
  • 正文 年R本政府宣布,位于F島的核電站傲宜,受9級特大地震影響运杭,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜蛋哭,卻給世界環(huán)境...
    茶點故事閱讀 39,892評論 3 312
  • 文/蒙蒙 一县习、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧谆趾,春花似錦、人聲如沸叛本。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,741評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽来候。三九已至跷叉,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間营搅,已是汗流浹背云挟。 一陣腳步聲響...
    開封第一講書人閱讀 31,977評論 1 265
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留转质,地道東北人园欣。 一個月前我還...
    沈念sama閱讀 46,324評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像休蟹,于是被迫代替她去往敵國和親沸枯。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 43,492評論 2 348

推薦閱讀更多精彩內(nèi)容