(Yaf >=2.1.2)
Clear the last error info
public Yaf_Application Yaf_Application::clearLastError ( void )
Returns:
Examples:
Yaf_Application::clearLastError() example
<?php function error_handler($errno, $errstr, $errfile, $errline) { Yaf_Application::app()->clearLastError(); var_dump(Yaf_Application::app()->getLastErrorNo()); } $config = array( "application" => array( "directory" => "/tmp/notexists", "dispatcher" => array( "throwException" => 0, //trigger error instead of throw exception when error occure ), ), ); $app = new Yaf_Application($config); $app->getDispatcher()->setErrorHandler("error_handler", E_RECOVERABLE_ERROR); $app->run(); ?>
The above example will output something similar to:
int(0)
Please login to continue.