摘要:
Zend Framework 中提供了好几种 MVC 异常处理方式,首先让我们回顾下:1. 默认的交由 Zend_Controller_Plugin_ErrorHandler 插件来处理。2. 通过Zend_Controller_Front::throwExceptions(true) 来处理:$front->throwExceptions(true);try { $front->dispatch();} catch (Exception $e) { // handle exceptions yourself}3. 通过Zend_Controller_Response_Abstra 阅读全文
posted @ 2012-04-19 18:01 张贺 阅读(439) 评论(0) 推荐(0) 编辑