stop warning in php code example
Example 1: php remove warning
error_reporting(E_ALL ^ E_WARNING);
Example 2: how to remove notice error in php
ini_set('display_errors', 0);
ini_set('display_startup_errors', 0);
error_reporting(E_ALL ^ E_WARNING);
ini_set('display_errors', 0);
ini_set('display_startup_errors', 0);