php 类自动加载

  • Jesse
  • 2015-11-30 18:38:00
  • 2781
​最近想到一个问题:许多php框架直接通过命名空间(use)导入相关类,但use并没有include和require的功能,这个类是怎么引进来的呢?

查阅资料可以得知php引入了自动加载功能,可以使用spl_autoload_register注册一个自动加载函数,或使用魔术方法__autoload,而框架里面大多都在公共方法里加入了该自动加载函数

 

PHP在找一个内存中还不存在的类时, 就会调用spl_autoload_register注册进来的自动加载函数来寻找类。

 

bool spl_autoload_register ([ callable $autoload_function [, bool $throw = true [, bool $prepend = false ]]] )

 

该方法php5.1.2加入(PHP 5 >= 5.1.2, PHP 7)

 

使用方法

 

spl_autoload_register(‘class_name');

spl_autoload_register(array(‘class_name','method_name'));

 

以下为__autoloadspl_autoload_register的区别:

 

一、__autoload

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

printit.class.php

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

index.php

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

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

<?php
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();
?>