Reputation: 44395
I am creating function-tracing xt
files with xdebug
which are are created with php
commands like
xdebug_start_trace('outfile')
... code ...
xdebug_stop_trace();
How can I analyze/visualize the created data?
Upvotes: 1
Views: 2446
Reputation: 44851
See the documentation and the answers to this question.
You may be able to use https://github.com/corretge/xdebug-trace-gui. There are also other tools available, such as ValaXdebugTools and XDebugUtils.
And, of course, you can always roll your own solution.
Upvotes: 1