Voting

: max(three, eight)?
(Example: nine)

The Note You're Voting On

Brad
17 years ago
It can't be completely reset, but you can "clear" it well enough for all practical purposes:
<?php
@trigger_error("");
// do stuff...
$e=error_get_last();
if(
$e['message']!==''){
// An error occurred
}
?>

<< Back to user notes page

To Top