第七章 错误和异常处理
程序员文章站
2022-07-13 21:45:13
...
try {
//要检测的代码块
if(!a){
throw new Exception('炸了!');//抛出异常刚
}
}catch(Exception $e){
echo $e->getCode().$e->getMessage();//输出错误信息
}finally{
//不管成功和失败都会执行,可以不写
echo 'haha';
}