php suppress warning error code example
Example 1: wordpress turn off php warnings
ini_set('display_errors','Off');
ini_set('error_reporting', E_ALL );
define('WP_DEBUG', false);
define('WP_DEBUG_DISPLAY', false);
Example 2: turn off deprecated warnings php
error_reporting(E_ALL ^ E_DEPRECATED);