views:

177

answers:

1

I saw Jeff Atwood's post on his blog about Exception Driven Programming and I was curious if there is anything like ELMAH for PHP?

G-Man

+1  A: 

Zend Server is providing monitoring of PHP applications. The things it can monitor includes:

  • application response time
  • failed user requests
  • application accesibility
  • generated errors

This is probably the closest you can get to your needs.

Peter Smit