Yaf_Application::getLastErrorMsg

(Yaf >=2.1.2)

Yaf_Application::getLastErrorMsg直近で発生したエラーのメッセージを取得する

説明

public Yaf_Application::getLastErrorMsg(): string

パラメータ

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

戻り値

例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// エラーが発生したときに、例外をスローするのではなくエラーにします
      
),
  ),
);

$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, 直近, エラー, メッセージ, 取得, 発生, getLastErrorMsg, string, パラメータ, public