Yaf_Application::clearLastError

(Yaf >=2.1.2)

Yaf_Application::clearLastErrorClear the last error info

Descrizione

public Yaf_Application::clearLastError(): Yaf_Application

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

Esempi

Example #1 Yaf_Application::clearLastError()example

<?php
function error_handler($errno, $errstr, $errfile, $errline) {
Yaf_Application::app()->clearLastError();
var_dump(Yaf_Application::app()->getLastErrorNo());
}

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

Il precedente esempio visualizzerĂ  qualcosa simile a:

int(0)
add a note add a note

User Contributed Notes

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