error reporting number meaning php code example
Example 1: how to remove notice error in php
ini_set('display_errors', 0);
ini_set('display_startup_errors', 0);
Example 2: e_notice in php
// Reporting E_NOTICE
error_reporting(E_ERROR | E_WARNING | E_PARSE | E_NOTICE);