|
error_clear_lastClear the most recent error Beschreibung
void error_clear_last
( void
)
RückgabewerteClears the most recent errors, making it unable to be retrieved with error_get_last. Beispiele
Beispiel #1 An error_clear_last example
<?phpDas oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
NULL
NULL
array(4) {
["type"]=>
int(8)
["message"]=>
string(21) "Undefined variable: b"
["file"]=>
string(9) "%s"
["line"]=>
int(6)
}
NULL
|