php ignore warnings code example

Example 1: php error reporting

ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);

Example 2: php remove warning

error_reporting(E_ALL ^ E_WARNING);

Example 3: how to remove notice error in php

ini_set('display_errors', 0);
ini_set('display_startup_errors', 0);

Example 4: php remove warning

error_reporting(E_ERROR | E_PARSE);

Example 5: phpcs ignore line warning

// Ignore a line warning (This would normally throw a non-camel case function name warning)
// @codingStandardsIgnoreLine
private function _MM_DD_YYYY_To_ISO($date){
}

// Ignore warning for a whole file
// phpcs:ignoreFile

Tags:

Php Example