@ (at) signs in php and still getting errors. (php newbie)
Moderator: General Moderators
Re: @ (at) signs in php and still getting errors. (php newbie)
You can not trap fatal errors, since by definition they kill the script (hence fatal). Any error handling set in code (including the @ operator) are a part of the script and will be killed as well. In short, try to avoid fatal errors.
Re: @ (at) signs in php and still getting errors. (php newbie)
To clarify what pytrin just said: The @ symbol will stop a fatal error from printing the message, but it won't stop it from being fatal.