避免Zends错误消息

时间:2010-06-08 14:02:25

标签: php zend-framework codeigniter

我在codeigniter中使用了Zend Framework for ACL,但是如果数据库中的某些内容不对,或者与框架接口的代码出错,那么框架会显示自己的错误消息。有没有办法压制这些?

1 个答案:

答案 0 :(得分:2)

如果您指的是异常,请使用以下内容:

try {
  $acl = new Zend_Acl();
  // some other Zend_* stuff
} catch(Zend_Exception $e) {
  // handle the error (the thrown exception) your way
}