__autoload和spl_autoload_register()用法上的区别

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

一、__autoload

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

 

 

 
  1. printit.class.php

  2.  
  3. <?php

  4.  
  5. class PRINTIT {

  6.  
  7. function doPrint() {

  8. echo 'hello world';

  9. }

  10. }

  11. ?>

  12.  
  13. index.php

  14.  
  15. <?

  16. function __autoload( $class ) {

  17. $file = $class . '.class.php';

  18. if ( is_file($file) ) {

  19. require_once($file);

  20. }

  21. }

  22.  
  23. $obj = new PRINTIT();

  24. $obj->doPrint();

  25. ?>

 

运行index.php后正常输出hello world。在index.php中,由于没有包含printit.class.php,在实例化printit时,自动调用__autoload函数,参数$class的值即为类名printit,此时printit.class.php就被引进来了。

在面向对象中这种方法经常使用,可以避免书写过多的引用文件,同时也使整个系统更加灵活。

二、spl_autoload_register()

再看spl_autoload_register(),这个函数与__autoload有与曲同工之妙,看个简单的例子:

 

 

 
  1. <?

  2. function loadprint( $class ) {

  3. $file = $class . '.class.php';

  4. if (is_file($file)) {

  5. require_once($file);

  6. }

  7. }

  8.  
  9. spl_autoload_register( 'loadprint' );

  10.  
  11. $obj = new PRINTIT();

  12. $obj->doPrint();

  13. ?>


将__autoload换成loadprint函数。但是loadprint不会像__autoload自动触发,这时spl_autoload_register()就起作用了,它告诉PHP碰到没有定义的类就执行loadprint()。

spl_autoload_register() 调用静态方法

 

 

 
  1. <?

  2.  
  3. class test {

  4. public static function loadprint( $class ) {

  5. $file = $class . '.class.php';

  6. if (is_file($file)) {

  7. require_once($file);

  8. }

  9. }

  10. }

  11.  
  12. spl_autoload_register( array('test','loadprint') );

  13. //另一种写法:spl_autoload_register( "test::loadprint" );

  14.  
  15. $obj = new PRINTIT();

  16. $obj->doPrint();

  17. ?>

http://blog.csdn.net/panpan639944806/article/details/23192267

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值