国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 語言 > PHP > 正文

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

2024-05-04 23:48:22
字體:
來源:轉載
供稿:網友

本文實例分析了PHP中spl_autoload_register()函數用法。分享給大家供大家參考,具體如下:

在了解這個函數之前先來看另一個函數:__autoload。

一、__autoload

這是一個自動加載函數,在PHP5中,當我們實例化一個未定義的類時,就會觸發此函數。看下面例子:

printit.class.php:

<?phpclass 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時,自動調用__autoload函數,參數$class的值即為類名printit,此時printit.class.php就被引進來了。

在面向對象中這種方法經常使用,可以避免書寫過多的引用文件,同時也使整個系統更加靈活。

二、spl_autoload_register()

再看spl_autoload_register(),這個函數與__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函數。但是loadprint不會像__autoload自動觸發,這時spl_autoload_register()就起作用了,它告訴PHP碰到沒有定義的類就執行loadprint()。

spl_autoload_register() 調用靜態方法

<?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()函數

說明

bool spl_autoload_register ([ callback $autoload_function ] )
將函數注冊到SPL __autoload函數棧中。如果該棧中的函數尚未激活,則激活它們。

如果在你的程序中已經實現了__autoload函數,它必須顯式注冊到__autoload棧中。因為spl_autoload_register()函數會將Zend Engine中的__autoload函數取代為spl_autoload() 或 spl_autoload_call()。

參數

autoload_function

欲注冊的自動裝載函數。如果沒有提供任何參數,則自動注冊autoload的默認實現函數spl_autoload()。

返回值

如果成功則返回 TRUE,失敗則返回 FALSE。

注:SPL是Standard PHP Library(標準PHP庫)的縮寫。它是PHP5引入的一個擴展庫,其主要功能包括autoload機制的實現及包括各種Iterator接口或類。SPL autoload機制的實現是通過將函數指針autoload_func指向自己實現的具有自動裝載功能的函數來實現的。SPL有兩個不同的函數spl_autoload, spl_autoload_call,通過將autoload_func指向這兩個不同的函數地址來實現不同的自動加載機制。

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

如果同時用spl_autoload_register注冊了一個類的方法和__autoload函數,那么,會根據注冊的先后,如果在第一個注冊的方法或函數里加載了類文件,就不會再執行第二個被注冊的類的方法或函數。反之就會執行第二個被注冊的類的方法或函數。

<?phpclass 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 );  }}//callautoloader::init ();?>

希望本文所述對大家PHP程序設計有所幫助。


注:相關教程知識閱讀請移步到PHP教程頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表

圖片精選

主站蜘蛛池模板: 二连浩特市| 双峰县| 乡宁县| 凤凰县| 东港市| 枝江市| 周宁县| 姚安县| 四会市| 南华县| 临夏县| 通河县| 叙永县| 屏边| 宁安市| 合江县| 石狮市| 湖南省| 青铜峡市| 黑山县| 独山县| 越西县| 福鼎市| 锦屏县| 鄄城县| 中卫市| 航空| 天台县| 富宁县| 铜川市| 克拉玛依市| 介休市| 阿克苏市| 台山市| 陕西省| 石城县| 扎赉特旗| 浮山县| 汨罗市| 西青区| 洛阳市|