在Uncaught Exception之后重启代码?

时间:2015-03-10 12:19:11

标签: php

我对PHP不太顺利,因为我只是临时使用它。我的代码的性质非常简单,它确实有一些案例涉及未被捕获的异常:退出"。

我怎样才能使用异常处理程序告诉它在收到此错误时重启代码?

1 个答案:

答案 0 :(得分:0)

请参阅:http://php.net/manual/en/language.exceptions.php

使用try-catch声明:

try {
    //your code here
} catch (Exception e) {
   // do something if an exception is thrown.
}