Answers for "php ignore warnings"

PHP
0

how to remove notice error in php

ini_set('display_errors', 0);
ini_set('display_startup_errors', 0);
Posted by: Guest on September-21-2020
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