I have a large complex PHP project made up of many PHP files.
Is there some function I can call in my code that will return a list of all included files?
register_shutdown_function( function() { your_logger(get_included_files()); } );
get_included_files will be called at the end of script execution, so u`ll get full list of included files