Sunday, March 13, 2011

PHP - hide DEPRECATED warning messages

To turn off the DEPRECATED warning messages in a PHP (5.3+) script, include the following line:

error_reporting(E_ALL & ~E_DEPRECATED);

Check: http://php.net/manual/en/function.error-reporting.php

G.

4 comments: