php自动加载带命名空间类的函数
更新:HHH   时间:2023-1-7


  1. 代码:
    <?php
    /*
    @desc:自动加载类的函数
    @param dir 需要注册自动加载的文件夹
    */
    function autoloader($dir){
    spl_autoload_register(function($name) use ($dir){
        $name = str_replace('\\',DIRECTORY_SEPARATOR,$name);
        require $dir.DIRECTORY_SEPARATOR.$name.'.php';
    });
    }
  2. 测试:
    autoloader('a');
    use a\config;
    $config = new config();
    $config->say();
  3. 输出:
    hello
返回web开发教程...