Question

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?

No correct solution

OTHER TIPS

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top