I know you can use @ to suppress errors.
But is there anyway you can make php ignore @ ?
In my case, I have to use a 3th party script that uses @, the script is huge and I’m having a hard time finding out where it dies.
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.
When you use the PHP Xdebug extension you can ignore the error control operator
@by using this config setting:This disables the @ (shut-up) operator so that notices, warnings and errors are no longer hidden.