在了解spl_autoload_register()函数之前,先来看另一个函数:__autoload。
一、__autoload
这是一个自动加载函数,在PHP5中,当我们实例化一个未定义的类时,就会触发此函数。看下面例子:
printit.class.php
<?php
class PRINTIT {
function doPrint() {
echo 'hello world';
}
}
?>
index.php
例1
<?
function__autoload( $class ) {
$file = $class . '.class.php';
if ( is_file($file) ) {
require_on
}
}
$obj = newPRINTIT();
$obj->doPrint();
?>
运行index.php后正常输出hello world。在index.php中,由于没有包含printit.class.php,在实例化printit时,自动调用__autoload函数,参数$class的值即为类名printit,此时printit.class.php就被引进来了。
在面向对象中这种方法经常使用,可以避免书写过多的引用文件,同时也使整个系统更加灵活。
例2(调用不同目录的类)
<?php
function__autoload($_ClassName){
if(substr($_ClassName,-6)=='Act
requireROOT_PATH.'/act
}elseif(substr($_ClassNam