我在codeigniter中使用了Zend Framework for ACL,但是如果数据库中的某些内容不对,或者与框架接口的代码出错,那么框架会显示自己的错误消息。有没有办法压制这些?
答案 0 :(得分:2)
如果您指的是异常,请使用以下内容:
try {
$acl = new Zend_Acl();
// some other Zend_* stuff
} catch(Zend_Exception $e) {
// handle the error (the thrown exception) your way
}