PHP异常 - 正确的错误处理

时间:2014-11-22 07:07:48

标签: php error-handling try-catch php-5.5

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>

更新

http://codepad.org/RFqBsAKv

0 个答案:

没有答案