Notice¶
A notice is a non-critical runtime error that alerts developers about potential problems in the code, but doesn’t stop script execution at that point.
Notices are one of the error reporting levels, below error and warning.
<?php
echo $x; // Notice, undefined variable
?>
See also How to Display All PHP Errors: A Detailed Guide.
Related : Error, Warning, Error Reporting, Fatal Error