Hi all,
is there a way to handle error reporting in a centralized manner in PHP? I'd like to be notified of all errors raised by my application by email.
What's the best way to achieve this for a whole application?
Thanks
|
2
|
Hi all, is there a way to handle error reporting in a centralized manner in PHP? I'd like to be notified of all errors raised by my application by email. What's the best way to achieve this for a whole application? Thanks
|
||
|
|
|
|
As Kalium mentioned, you'll want to be using What I do myself is have my code trap errors, and convert those errors to approprate exceptions that I can catch elsewhere. For anything that isn't caught, I use the default exception handler to log and report them, and to display an appropriate error if necessary. |
||
|
|
|
|
You can use set_error_handler to handle errors at runtime any way you like. |
||
|
|
|
|
There are 3 types of errors:
The best way to create an For database, I suggest using a centralized Database class which handles all the queries. Use something like this:
For logical errors, such as the error of not finding an expected file or database record, you would call up the same ErrorHandler class and do something like:
Here the Your |
||
|
|