Turning off Deprecation warnings in PHP.ini file WAMP

php

Solution

You can use this function :

error_reporting(E_ALL ^ E_DEPRECATED);

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

Or use "@" operator before function name.

@mysql_connect();

Problem

I am working on project @ home and using WAMP for development. Currently the `php.ini` file has the following lines set like this: ``` error_reporting = E_ALL & ~E_DEPRECATED display_errors = On ``` I had hoped in doing so it would prevent deprecation warnings from showing up. However it is not. Is there a way I can adjust `error_reporting` to ignore deprecated warnings. Output I am getting currently:

Original source

Related problems