http://i.imgur.com/jB1lXYD.png
Xdebug v2.3.3
php -d xdebug.profiler_enable=On test.php
http://i.imgur.com/jB1lXYD.png
Xdebug v2.3.3
php -d xdebug.profiler_enable=On test.php
| version: 1 | |
| creator: xdebug 2.3.3 | |
| cmd: /www/test/test.php | |
| part: 1 | |
| positions: line | |
| events: Time | |
| fl=(1) /www/test/todo.txt | |
| fn=(1) include::(null) | |
| 1 820 | |
| fl=(2) /www/test/test.php | |
| fn=(2) A->out | |
| 5 42364 | |
| cfl=(1) | |
| cfn=(1) | |
| calls=1 0 0 | |
| 6 820 | |
| fl=(2) | |
| fn=(3) run | |
| 11 23 | |
| cfl=(2) | |
| cfn=(2) | |
| calls=1 0 0 | |
| 12 43184 | |
| fl=(2) | |
| fn=(4) {main} | |
| summary: 43226 | |
| 1 17 | |
| cfl=(2) | |
| cfn=(3) | |
| calls=1 0 0 | |
| 16 43208 | |
| <? | |
| class A { | |
| public function out() { | |
| include 'todo.txt'; | |
| echo 'hello'; | |
| } | |
| } | |
| function run() { | |
| (new A())->out(); | |
| } | |
| run(); | |
| todo goes here |