If a Line of PHP code crashes, is there a way to tell the parser to keep processing the rest of the page rather than stopping page execution?
ie: VB's on error resume next OR Java's try...catch ?
On Error ??
Moderator: General Moderators
http://www.php.net/manual/en/ref.errorfunc.php
set_error_handler and such
set_error_handler and such
As Stoker said, but please have in mind that its generally a very bad idea to ignore errors.
You have the same question (and answers) in this thread.
You have the same question (and answers) in this thread.