Link to home
Start Free TrialLog in
Avatar of mychel_normandeau
mychel_normandeauFlag for Canada

asked on

PHP error reporting

Hello!

In my PHP.ini I have:
error_reporting  =  E_ALL & ~E_NOTICE

But I want any warning, error, hints... Anything PHP can tell me to improve my code... displayed to me straight in the (HTML) output.

Does:
error_reporting  =  E_STRICT & ~E_NOTICE
will do the job?

I use PHP 5.2.1.
Avatar of darron_chapman
darron_chapman
Flag of United States of America image

Just E_ALL....

error_reporting  =  E_ALL
ASKER CERTIFIED SOLUTION
Avatar of hernst42
hernst42
Flag of Germany image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of mychel_normandeau

ASKER

error_reporting  =  E_ALL | E_STRICT

Will also display messages in output ?
error_reporting  =  E_ALL | E_STRICT
Will also display messages in output ?

and what about E_RECOVERABLE_ERROR ?
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial