I wonder if it's possible in some way to know and eventually show all the php pages processed during a single http request.
For example, if the page is /index.php I'd like to call the page and to know immediately what are all the included php pages required to get the response, without obviously debugging the page...
Maybe through logs, or dump?
There is get_included_files
method.
Gets the names of all files that have been included using include, include_once, require or require_once.