I'm curious if there is a way to somehow capture the PHP code executed when loading a page locally on my system? If so I'd like to be able to compare it to different builds for performance comparisons.
Perhaps a log output similar to this...
file1.php
include('file2.php');
file2.php
echo 'Hi Mom!';
file1.php
echo 'second line';
echo 'third line executed here';
echo 'etc';
- John