(Yaf >=1.0.0)
Yaf_Dispatcher::catchException — 开启/关闭异常捕获
当 application.dispatcher.throwException 为 On 时(您也可以通过调用 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