Yaf_Application::getLastErrorMsg

(Yaf >=2.1.2)
Get message of the last occurred error
public string Yaf_Application::getLastErrorMsg ( void )
Returns:
Examples:
Yaf_Application::getLastErrorMsg() example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?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 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:

string(69) "Could not find controller script /tmp/notexists/controllers/Index.php"
doc_php
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.