Does error_reporting(0); have any effect on error logging (to file), or does it just suppress on-screen error display?
Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes, it affects both.
The error_reporting level defines what levels of errors gets triggered. Whether you log or display those errors are determined by the other settings.
To summarize:
In essence, setting
error_reporting(0)means that you’ve turned off error reporting, and nothing will be logged to file or output to the screen.