(Yaf >=2.1.2)
Yaf_Application::getLastErrorMsg — Get message of the last occurred error
Get the message of the last error that occurred during dispatching.
This function has no parameters.
The error message of the last occurred error, an empty string if no
error occurred yet, or null if the application is not properly
initialized.
Example #1 Yaf_Application::getLastErrorMsg() example
<?php
function error_handler($errno, $errstr, $errfile, $errline) {
var_dump(Yaf_Application::app()->getLastErrorMsg());
}
$config = array(
"application" => array(
"directory" => "/tmp/notexists",
"dispatcher" => array(
"throwException" => 0, //trigger error instead of throwing an exception when an error occurs
),
),
);
$app = new Yaf_Application($config);
$app->getDispatcher()->setErrorHandler("error_handler", E_RECOVERABLE_ERROR);
$app->run();
?>The above example will output something similar to:
string(69) "Could not find controller script /tmp/notexists/controllers/Index.php"