if(function_exists('spl_autoload_register')){
try {
spl_autoload_register(function ($name) {
if(file_exists($name.'.php')){
require_once $name.'.php';
}else{
throw new Exception('undefined this');
}
});
}catch (Exception $e){
echo $e->getMessage();
exit;
}
}
class main{
public function myf(){
$test = new tests;
$test->show();
}
}
1 回答
![?](http://img1.sycdn.imooc.com/545864190001966102200220-100-100.jpg)
犯罪嫌疑人X
TA贡献2080条经验 获得超4个赞
你的 catch, catch 的错误是spl_autoload_register
是否能注册函数成功
try {
$test = new tests;
$test->show();
} catch (Exception $e) {
echo $e->getMessage();
exit;
}
这样才能有你想要的结果
- 1 回答
- 0 关注
- 1457 浏览
添加回答
举报
0/150
提交
取消