Spl_autoload_register register the given function as _ autoload implementation official address: php. netmanualhfunction. spl-autoload-register.php my test defines three files test. phptest1.phptest2. phptest. php? Phpspl_autoload_register (autoLoad1); test1 ::
Spl_autoload_register register a given function as _ autoload implementation official address: http://php.net/manual/zh/function.spl-autoload-register.php my test defines three files test. php test1.php test2.php test. php? Phpspl_autoload_register ('autoload1'); test1 ::
Spl_autoload_register-registers a given function as the _ autoload implementation
Official Address: http://php.net/manual/zh/function.spl-autoload-register.php
My tests
Define three files: test. php test1.php test2.php
Test. php
echo "
";test2::test();function autoLoad1($class) { require $class.'.php';}
Test1.php
Test2.php
Run test. php