跳至
[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