disable php notices code example
Example 1: how to remove notice error in php
ini_set('display_errors', 0);
ini_set('display_startup_errors', 0);
Example 2: php not display notice
// Report all errors except E_NOTICE
error_reporting(E_ALL ^ E_NOTICE);