Home  >  Article  >  php教程  >  php __autoload 异常 Fatal error: Uncaught Error: Class 解决办法

php __autoload 异常 Fatal error: Uncaught Error: Class 解决办法

WBOY
WBOYOriginal
2016-06-02 09:14:122485browse
跳至 [1] [2] [全屏预览]
function __autoload($filename){
    $file="libs/class.".$filename.".php";
    if(is_file($file)) {
       include $file;
       return;
    }
}

2. [代码]更改后     跳至 [1] [2] [全屏预览]

class libs{
    public static function autoload($filename){
        $file="libs/class.".$filename.".php";
        if(is_file($file)) {
           include $file;
           return;
        }
    }
}
spl_autoload_register('libs::autoload');
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn