vote up 7 vote down star
2

I can use set_error_handler() to catch most PHP errors, but it doesn't work for fatal (E_ERROR) errors, such as calling a function that doesn't exist. Is there another way to catch these errors?

I am trying to call mail() for all errors and am running PHP 5.2.3.

flag

65% accept rate

3 Answers

vote up 5 vote down check

Quickly googling brought up this post on the subject.

link|flag
Won't that only work if display_errors is on? – ejunker Aug 19 at 17:55
vote up 3 vote down

PHP won't provide you with any conventional means for catching fatal errors because they really shouldn't be caught. Any techniques for catching them (like string matching an output buffer) are almost sure to be ill-advised.

In general, emailing yourself when errors are thrown could prove to be problematic, at least if it involves calling the mail() function from within an error handler method. If you had a lot of errors, your mail server would be loaded with work, and you'd have a pretty gnarly inbox.

Alternatively, you might consider running a cron to scan error logs periodically and send notifications accordingly. You might also like to look into system monitoring software, such as Nagios.

link|flag
Pfff, I remember those 650.000+ e-mails i got the following morning. Since then my ErrorHandler is capped at 100 emails per webserver. – NebyGemini Sep 23 at 8:12
vote up 1 vote down

Not really. Fatal errors are called that, because they are fatal. You can't recover from them.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.