CakeFest 2024: The Official CakePHP Conference

Yaf_Dispatcher::setErrorHandler

(Yaf >=1.0.0)

Yaf_Dispatcher::setErrorHandlerSet error handler

Beschreibung

public Yaf_Dispatcher::setErrorHandler(call $callback, int $error_types): Yaf_Dispatcher

Set error handler for Yaf. when application.dispatcher.throwException is off, Yaf will trigger catchable error while unexpected errors occurred.

Thus, this error handler will be called while the error raise.

Parameter-Liste

callback

A callable callback

error_types

Rückgabewerte

Siehe auch

add a note

User Contributed Notes 1 note

up
1
gianjason#gmail.com
11 years ago
eg:

<?php $dispatcher->setErrorHandler(array(get_class($this),'error_handler')); ?>
To Top