详解spl_autoload_register()函数

发布时间:2019-08-08 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了详解spl_autoload_register()函数脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。

了解这个函数之前先来看另一个函数:__autoload

一、__autoload

这是一个自动加载函数,在PHP5中,当我们实例化一个未定义的类时,就会触发此函数。看下面例子:

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时,自动调用__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()函数全部内容,希望文章能够帮你解决详解spl_autoload_register()函数所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。