php命名空间自动加载

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

 

posted @ 2017-04-24 15:54  叨叨的蜗牛  阅读(107)  评论(0编辑  收藏  举报