我对PHP不太顺利,因为我只是临时使用它。我的代码的性质非常简单,它确实有一些案例涉及未被捕获的异常:退出"。
我怎样才能使用异常处理程序告诉它在收到此错误时重启代码?
答案 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.
}