Friday 15 July 2016

How to hide notices and warnings in PHP

Method to hide all notices and warnings in php. Use the following code in php.ini file hide all notices and warnings in php.

In php.ini file add the below code

error_reporting = E_ALL & ~E_NOTICE & ~E_WARNING

No comments:

Post a Comment