Home >Backend Development >PHP Tutorial >How to remove warning, deprecate and other prompts in PHP
Open php/php.ini: modify error_reporting = E_ALL & ~E_NOTICE & ~E_DEPRECATED to error_reporting = E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_WARNING
Open php/php.ini: Revise error_reporting = E_ALL & ~E_NOTICE & ~E_DEPRECATED for error_reporting = E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_WARNING That’s it. |