Hello everybody.
First: Sory for my english.
I'm searching a way to know wich lines of files are executed in all the request... Or something like that.
Example:
If we have this code:
line 01: <?php
line 02: function foo(){
line 03: echo 'Hello';
line 04: return false;
line 05: }
line 06:
line 07: echo 'We are testing';
line 08: foo();
line 09: echo 'end of script';
line 10: ?>
I need get the lines and the files executeds...
For example, a log-file with this information:
file index.php
lines executeds: 07, 08, 02, 03, 04, 09, 10
Or something like that... I don't know...
Anybody can help me?
Tnks!
Noel