(Yaf >=1.0.0)
Yaf_Dispatcher::catchException — 启用/禁用异常捕获
当 application.dispatcher.throwException 处于开启状态(也可以调用 Yaf_Dispatcher::throwException(TRUE)() 来启用它)时,Yaf 会在发生错误时抛出异常,而不是触发错误。
然后,如果您启用 Yaf_Dispatcher::catchException()(也可以通过设置 application.dispatcher.catchException 来启用),所有未捕获的异常都将被 ErrorController::error 捕获(如果您已定义该控制器)。
flag
bool
示例 #1 Yaf_Dispatcher::catchException() 示例
/* 如果你定义了一个像下面这样的 ErrorController */
<?php
class ErrorController extends Yaf_Controller_Abstract {
/**
* 你也可以调用 Yaf_Request_Abstract::getException 来获取
* 未捕获的异常。
*/
public function errorAction($exception) {
/* 发生错误 */
switch ($exception->getCode()) {
case YAF_ERR_NOTFOUND_MODULE:
case YAF_ERR_NOTFOUND_CONTROLLER:
case YAF_ERR_NOTFOUND_ACTION:
case YAF_ERR_NOTFOUND_VIEW:
echo 404, ":", $exception->getMessage();
break;
default :
$message = $exception->getMessage();
echo 0, ":", $exception->getMessage();
break;
}
}
}
?>
以上示例将输出类似于以下内容:
/* now if some error occur, assuming access a non-exists controller(or you can throw a exception yourself): */ 404:Could not find controller script **/application/controllers/No-exists-controller.php