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?
asked Feb 13, 2014 at 16:20
-
What have you found out so far?ragol– ragol02/13/2014 16:21:47Commented Feb 13, 2014 at 16:21
1 Answer 1
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.
answered Feb 13, 2014 at 16:26
-
The link to chepri,com is brokenTelmo Pimentel Mota– Telmo Pimentel Mota08/29/2019 22:50:33Commented Aug 29, 2019 at 22:50
-
@TelmoPimentelMota I've updated the answer to link directly to the tools in question; thanks.elixenide– elixenide08/30/2019 02:03:02Commented Aug 30, 2019 at 2:03
-
Note: xdebug-trace-gui is not compatible with xdebug3Black– Black01/17/2024 14:41:27Commented Jan 17, 2024 at 14:41
lang-php