欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

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

PHP中spl