在exceptions
中处理PHP
的正确方法是什么?你应该字面意思:
try{} catch($e){}
try{} catch($e){}
try{} catch($e){}
try{} catch($e){}
try{} catch($e){}
try{} catch($e){}
try{} catch($e){}
比如,你是否应该try, catch
在其他try, catch
内? E.g。
try{
try{} catch($e){}
} catch($e){
}
我有点困惑你应该try, catch
...或者更多PHP
程序员这样做。因为只要catch
exception
它通常会取消剩下的代码,在我看来你无法避免使用吨嵌套try{} catch($e){}
我错了吗? / p>
更新