Hello,
I was wondering if it's possible to extend the PHP native error_reporting/error_logging so that it could show more information.
Sometimes, I see in my error log, errors from an include file. These are cases which happens rarely, not consistently, and I would like to be able to know which PHP script called the function in that case where it hit an error.
basically, I'd like to know if it's possible to do this or other customizations to show additional information globally on PHP's error_reporting, as opposed to modifying each place in the code to check for certain circumstances and call the error_log() function manually.
Thanks,