For example, if we try to get to some api but fail, or try to connect to our database but also fail.
|
|
There are several ways to deal with this:
|
|||
|
|
|
You can user PHP Error Handling. See set_error_handler |
||||
|
|
|
php error handling is tricky, and there are many points to take into account. In php, we have 3 types of errors:
|
|||
|
|
|
There is a default function of PHP to log errors; error_log Example from PHP.net:
|
|||
|
|
|
Be aware of extensive logging. Especially on productive Systems.
example:
Usage: throw new ExampleExceptionWithLogging('Sample Message'); |
|||
|
|
|
There are 3 issues here:
As others have said, (1) can be dealt with using set_error_handler(), note that you can instantiate your own customer errors within your code, e.g.
The established practice for capturing information is the stack trace - and this is indeed available in PHP, however this is a static snapshot of the state of the PHP code at the point the error occurred - if you've tested your code properly, then the fault likely has nothing to do with your PHP code. Its a good indicator of where you should try to fix your code, but not a good indicator of what you need to fix. The stacktrace is still a useful tool, but it was often the only tool for programs which were running for any length of time, other than recording detailled logs of what the program did in the run up to the error. As well as an obvious performance hit, wading through several megabytes of logfiles looking for an error can be like looking for a needle in a haystack. However since PHP programs usually just generate a web page the exit, this presents the opportunity to accumulate the detailled log of events in a PHP variable, then you can choose to write the variable to a file only once an error occurs. Like most things about programming, there is a trade-off here - if an error has happenned that you didn't expect/ plan for, how do you know that you're error handling is going to work? In terms of making the data available, you probably should not record it in a database - chances are your program may have failed because the database isn't working properly - error handling must be very, very robust. Dumping it into a uniquely named file is a good approach which avoids the file contention problems you'd have with appending to a consolidated log file. Or use the syslog facility. You might even email a copy of the error out (but again this is relying on another complex subsystem). HTH C. |
|||
|
|