PHP中spl
程序员文章站
2022-04-19 15:49:42
...
spl_autoload_register 注册给定的函数作为 __autoload 的实现 官方地址:http://php.net/manual/zh/function.spl-autoload-register.php 我的测试 定义三个文件test.php test1.php test2.php test.php ? phpspl_autoload_register( ' autoLoad1 ' );test1::
spl_autoload_register — 注册给定的函数作为 __autoload 的实现
官方地址:http://php.net/manual/zh/function.spl-autoload-register.php
我的测试
定义三个文件test.php test1.php test2.php
test.php
php spl_autoload_register('autoLoad1'); test1::test();
echo "
"; test2::test(); function autoLoad1($class) { require $class.'.php'; }
test1.php
php class test1 { static public function test() { echo __FILE__; } }
test2.php
php class test2 { static public function test() { echo __FILE__; } }
运行test.php
上一篇: 孙策如此有作为,如不早死他能统一三国吗?
下一篇: PS临摹欢乐颂水彩风格海报教程