<?php class ExceptionController extends Zend_Controller_Action { public function indexAction() { try { throw new Zend_Exception('你好'); } catch (Zend_Exception $e) { echo '捕获到了'; } } }