我正在使用
PHP与CodeIgniter框架.我读了一些文章说明使用try / catch方法是不好的做法.
我理解在发生潜在错误时使用登录开发并让实际错误发生然后使用log_message(‘level’,’message’)记录它
但是在部署时,您希望抑制并处理出现的任何错误.我应该使用try / catch块,例如…
try { $this->data['important'] = $this->Test_Model->do_something($data); if(empty(data['important'])) { throw new Exception('no data returned'); } catch (Exception $e) { //alert the user then kill the process var_dump($e->getMessage()); }
当我正确使用try / catch时,我很困惑.
您的代码中存在语法错误,应该是:
原文链接:https://www.f2er.com/php/135154.htmltry { $this->data['important'] = $this->Test_Model->do_something($data); if(empty($this->data['important'])) { throw new Exception('no data returned'); } } catch (Exception $e) { //alert the user. var_dump($e->getMessage()); }
使用try / catch并不是一个坏习惯.
异常是可捕获的,无需覆盖PHP默认错误处理程序.这意味着您可以在运行时发生异常时执行某些操作.
日志适合您.如果您的应用程序不健康并且您记录了可能存在问题的点,则可以更轻松地识别错误.日志和本机日志之间的主要区别在于上下文,本机日志没有上下文,它们只有事件和可能的堆栈跟踪.