E_NOTICE indicate Run-time notices in PHP's error_reporting
E_NOTICE indicate Run-time notices in PHP's error_reporting
Run-time notices. Indicate that the script encountered something that could indicate an error, but could also happen in the normal course of running a script.
Examples:
<?php
// Reporting E_NOTICE can be good too (to report uninitialized
// variables or catch variable name misspellings ...)
error_reporting(E_ERROR | E_WARNING | E_PARSE | E_NOTICE);
// Report all errors except E_NOTICE
error_reporting(E_ALL & ~E_NOTICE);
PHP error-reporting: https://php.net/manual/en/function.error-reporting.php