phperror-reporting

How can error_reporting be overridden?


I have set error_reporting = 0 in php.ini, but when I create a script containing <?php echo "error: ".error_reporting(); ?> it reports an error level of 7. What else could be setting the error_reporting value?


Solution

  • There are many places this can be set that override the main php.ini. Run phpinfo() and check Local Value and Master Value for error_reporting. Also check to see if any of the following exist and if they have a different setting for error_reporting:

    Any of the above can override settings in the Loaded Configuration File php.ini.