PHP __autoload函数知识点
__autoload函数主要是用来包含不存在的类文件,当初始化的类不存在的时候
存在一个文件名为footer.php的文件,里面有个footer类
class footer{ public function __construct(){ echo 'autoload is ok'; } }
function __autoload($param){
$file = $param.'.php';
if(file_exists($file)){
require_once $file;
}
}
//实例化footer类的时候会,没有找到footer类,自动调用__autoload加载文件
$obj = new footer();