GoLang error_clear_last

request it (311)
GoLang replacement for PHP's error_clear_last [edit | history]



Do you know a GoLang replacement for PHP's error_clear_last? Write it!

PHP error_clear_last

PHP original manual for error_clear_last [ show | php.net ]

error_clear_last

(PHP 7)

error_clear_lastClear the most recent error

Description

void error_clear_last ( void )

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