详解spl_autoload_register()函数

技术文章 2016年6月17日 4.44K

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

一、__autoload

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

  1. printit.class.php
  2. <?php
  3. class PRINTIT {
  4.  function doPrint() {
  5.   echo ‘hello world’;
  6.  }
  7. }
  8. ?>
  9. index.php
  10. <?
  11. function __autoload( $class ) {
  12.  $file = $class . ‘.class.php’;
  13.  if ( is_file($file) ) {
  14.   require_once($file);
  15.  }
  16. }
  17. $obj = new PRINTIT();
  18. $obj->doPrint();
  19. ?>

运行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. spl_autoload_register( ‘loadprint’ );
  9. $obj = new PRINTIT();
  10. $obj->doPrint();
  11. ?>

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

spl_autoload_register() 调用静态方法

  1. <?
  2. class test {
  3.  public static function loadprint( $class ) {
  4.   $file = $class . ‘.class.php’;
  5.   if (is_file($file)) {
  6.    require_once($file);
  7.   }
  8.  }
  9. }
  10. spl_autoload_register(  array(‘test’,’loadprint’)  );
  11. //另一种写法:spl_autoload_register(  “test::loadprint”  ); 
  12. $obj = new PRINTIT();
  13. $obj->doPrint();
  14. ?>


关注微信公众号『PHP学习网

第一时间了解最新网络动态
关注博主不迷路~

PHP学习网:站内收集的部分资源来源于网络,若侵犯了您的合法权益,请联系我们删除!
分享到:
赞(0)

文章评论

您需要之后才可以评论
0点赞 0评论 收藏 QQ分享 微博分享

PHP学习网

PHP学习网