Answers for "ignore warning php"

PHP
1

php remove warning

error_reporting(E_ALL ^ E_WARNING);
Posted by: Guest on June-20-2020
0

php remove warning

error_reporting(E_ERROR | E_PARSE);
Posted by: Guest on June-20-2020
0

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
Posted by: Guest on January-01-2021

Browse Popular Code Answers by Language