/*自动加载*/
spl_autoload_register(function ($class){
    if($class){
        $file = str_replace('\\','/',$class);
        $file .= '.php';
        if(file_exists($file)){
            require_once $file;
        }
    }
});

 

相关文章: