// 注册类的自动加载器
spl_autoload_register(function ($class){
// 将路径分隔符替换:
$path = str_replace('\\', DIRECTORY_SEPARATOR, $class);
// 给文件加后缀
$file = __DIR__ . '/'. $path . '.php';
// 判断文件是否存在
if(is_file($file) && file_exists($file)){
require $file;
} else {
die($file . '不存在');
}
});