try{}catch{}

Posted dayin1

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了try{}catch{}相关的知识,希望对你有一定的参考价值。

try{
Db::name(‘user‘)->find();
}catch(Exception $e){
$this->error($e->getMessage());
}$
this->success(‘执行成功!‘); 

  


可以使用php的异常捕获进行必要的处理, 但需要注意一点, 在异常捕获中不要使用 thinkController
异常处理
- 427 -
的error、 success和redirect方法, 因为上述三个方法会抛出 HttpResponseException 异常, 从而影响正
常的异常捕获, 例如:


以上是关于try{}catch{}的主要内容,如果未能解决你的问题,请参考以下文章

Java异常处理机制

java异常 throw和try-catch的关系

JSP代码 我不知道怎么放入try和catch

php try catch 捕获哪些错误

javascript 多层嵌套try catch问题

求try catch语法