I am a php newb and I don’t have a clear answer for this.
To what extent do PHP “Notice” errors affect load time?
Ty
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.
The notice usually is logged to a file, so it involves I/O activity. In the worst case scenario however, the file will just consume the entire free space at HDD which effectivly will block your web site. Other than this, the performance decrease is usually negligible – there are a lot of things that are becoming bottleneck sooner than the notices.