Php/docs/yaf-application.getlasterrorno

From Get docs

Yaf_Application::getLastErrorNo

(Yaf >=2.1.2)

Yaf_Application::getLastErrorNoGet code of last occurred error


Description

public Yaf_Application::getLastErrorNo ( ) : int

Parameters

This function has no parameters.


Return Values

Examples

Example #1 Yaf_Application::getLastErrorNo()example

<?phpfunction error_handler($errno, $errstr, $errfile, $errline) {   var_dump(Yaf_Application::app()->getLastErrorNo());   var_dump(Yaf_Application::app()->getLastErrorNo() == YAF_ERR_NOTFOUND_CONTROLLER);}$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(516)
bool(true)