Yaf_Application
PHP Manual

Yaf_Application::getLastErrorMsg

(PECL yaf >=2.1.2)

Yaf_Application::getLastErrorMsgGet message of the last occurred error

説明

public string Yaf_Application::getLastErrorMsg ( void )

警告

この関数は、 現在のところ詳細な情報はありません。引数のリストのみが 記述されています。

パラメータ

この関数にはパラメータはありません。

返り値

例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 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
PHP Manual