Yaf_Application::getLastErrorMsg
Yaf_Application::getLastErrorMsg
(Yaf >=2.1.2)
Yaf_Application::getLastErrorMsg - 获取上次发生的错误消息
描述
public string Yaf_Application::getLastErrorMsg ( void )
参数
该函数没有参数。
返回值
示例
示例#1 Yaf_Application::getLastErrorMsg()示例
<?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(
?>
上面的例子会输出类似于:
string(69) "Could not find controller script /tmp/notexists/controllers/Index.php"
← Yaf_Application::getDispatcher
Yaf_Application::getLastErrorNo →