举个例子就可以看懂了:
同一目录中有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”过来。
时间: 2024-10-11 09:31:57