Why is error_reporting being ignored in php.ini?

951 Views Asked by At

I have set error_reporting = none in /etc/php5/apache2/php.iniand ran sudo service apache2 restart yet when I tail /var/log/apache2/error.log I still get stuff like PHP Notice:xxxxxxxxxxxxxshowing up.

Why is this?

1

There are 1 best solutions below

3
On

You should assign 0 rather than none to the error_reporting parameter in your php.ini:

error_reporting=0

The error_reporting parameter value is an integer bitmask where each bit represents different error level. 0 means all error levels are off, including notice.

You can also override default error_reporting value in your individual PHP script by using the following statement:

ini_set('error_reporting', 0);

This will turn all error reporting off for the current script's execution only.