|
2 |
Automated tag tuning
|
||
|
|
||||
|
1 |
|
||
set_error_handler Isn't Working How I Want It To WorkI'm taking the leap: my php scripts will ALL fail gracefully! At least, that's what I'm hoping for... I don't want to wrap (practically) every single line in try...catch statements, so I think my best bet is to make a custom error handler for the beginning of my files. I'm testing it out on a practice page:
This works fine, returning: Sorry, an error has occured on line 17. The function that caused the error says Undefined variable: imAFakeVariable. However, this setup doesn't work for undefined functions.
This returns: Fatal error: Call to undefined function: imafakefunction() in /Library/WebServer/Documents/experimental/errorhandle.php on line 17 Why isn't my custom error handler catching undefinedd functions? Are there other problems that this will cause? Thanks, Jason
|
||||
