标签: php error-handling
我有一些用于将产品Feed导入网站的php脚本。有时这些脚本崩溃(由于" 500内部服务器错误"我相信),我需要通过电子邮件发送通知。
在现有代码中添加try catch是否足够?类似的东西:
try catch
try { [existing_code] } catch (customException $e) { echo $e->errorMessage(); [e-mail_the_error] }
非常感谢!