如何忽略来自$ channel = new Zend_Feed_Rss的所有错误

时间:2013-09-02 10:02:17

标签: magento zend-framework

我目前正在从外部评论网站提取信息,并使用$ channel = new Zend_Feed_Rss('http://externalurl.com/feed')在我网站的侧边栏中显示这些评论

但是如果外部网站出于某种原因失败(就像本周末一样),这会使我的所有页面都嵌入默认的Magento错误处理 - “处理您的请求时出错,错误日志记录编号:XXXXXXXXXXX“

有什么方法可以阻止这种情况发生变化吗?

提前致谢 - 詹姆斯

1 个答案:

答案 0 :(得分:0)

如果它发送的异常超过你可以使用尝试捕获

处理它
try {
  //Your code

}
catch(Exception $e) {
  //Handle exception
}