error_clear_last

(PHP 7, PHP 8)

error_clear_lastClear the most recent error

Description

error_clear_last(): void

Parameters

This function has no parameters.

Return Values

Clears the most recent errors, making it unable to be retrieved with error_get_last().

Examples

Example #1 An error_clear_last() example

<?php
var_dump
(error_get_last());
error_clear_last();
var_dump(error_get_last());

@
$a = $b;

var_dump(error_get_last());
error_clear_last();
var_dump(error_get_last());
?>

The above example will output something similar to:

NULL
NULL
array(4) {
  ["type"]=>
  int(8)
  ["message"]=>
  string(21) "Undefined variable: b"
  ["file"]=>
  string(9) "%s"
  ["line"]=>
  int(6)
}
NULL

See Also

add a note

User Contributed Notes

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

Follow Lee on X/Twitter - Father, Husband, Serial builder creating AI, crypto, games & web tools. We are friends :) AI Will Come To Life!

Check out: eBank.nz (Art Generator) | Netwrck.com (AI Tools) | Text-Generator.io (AI API) | BitBank.nz (Crypto AI) | ReadingTime (Kids Reading) | RewordGame | BigMultiplayerChess | WebFiddle | How.nz | Helix AI Assistant