Voting

: five plus two?
(Example: nine)

The Note You're Voting On

Fernando Piancastelli
20 years ago
The error_reporting() function won't be effective if your display_errors directive in php.ini is set to "Off", regardless of level reporting you set. I had to set

display_errors = On
error_reporting = ~E_ALL

to keep no error reporting as default, but be able to change error reporting level in my scripts.
I'm using PHP 4.3.9 and Apache 2.0.

<< Back to user notes page

To Top