PHP之autoload理解

举个例子就可以看懂了:

同一目录中有2个文件index.php和test.php,在test.php中定义一个test类。

test.php

<?php

class  test{

    public function __construct()
    {
        echo ‘hello world‘;
    }

}

index.php

<?php


function __autoload($name)
{
    require "$name.php";
}

$test = new test();

运行脚本index.php,发现程序正常输出了‘hello world’。可是index.php中并没有定义test类,这是因为创建类实例的时候,PHP会自动优先调用“__autoload()”方法,并且会把类名作为参数传递给autoload方法。

这样,我们就可以在autoload方法中将要使用的类文件“require”过来。

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。