php ___autoload无法自动加载类,用了几种方法都不行,php版本是5.3.13.新手求大神解释
function__autoload($calssName){$filepath='./'.strtolower($className).'.class.php';if(...
function __autoload($calssName) {
$filepath = './' . strtolower($className) . '.class.php';
if (file_exists($filepath)) {
return include $filepath;
}
// include "./".strtolower($className).".class.php";
} 展开
$filepath = './' . strtolower($className) . '.class.php';
if (file_exists($filepath)) {
return include $filepath;
}
// include "./".strtolower($className).".class.php";
} 展开
1个回答
展开全部
function __autoload($className) {
$filepath = './' . strtolower($className) . '.class.php';
if (file_exists($filepath)) {
include $filepath;
} else {
echo 'Class(' .$className. ') Not Found<br/>';
}
//include "./".strtolower($className).".class.php";
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询