例如
<?php $dispatcher->setErrorHandler(array(get_class($this),'error_handler')); ?>
(Yaf >=1.0.0)
Yaf_Dispatcher::setErrorHandler — 设置错误处理程序
为 Yaf 设置错误处理程序。当 application.dispatcher.throwException 关闭时,Yaf 将在发生意外错误时触发可捕获的错误。
因此,当错误发生时,将调用此错误处理程序。
callback
一个可调用的回调函数
error_types
例如
<?php $dispatcher->setErrorHandler(array(get_class($this),'error_handler')); ?>