PHP 8.6.0 Beta 3 is available for testing

Yaf_Application::getLastErrorMsg

(Yaf >=2.1.2)

Yaf_Application::getLastErrorMsgGet message of the last occurred error

Açıklama

public function Yaf_Application::getLastErrorMsg(): ?string

Get the message of the last error that occurred during dispatching.

Bağımsız Değişkenler

Bu işlevin bağımsız değişkeni yoktur.

Dönen Değerler

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.

Örnekler

Örnek 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();
?>

Yukarıdaki örnek şuna benzer bir çıktı üretir:

string(69) "Could not find controller script /tmp/notexists/controllers/Index.php"

Ayrıca Bakınız

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top