1

I'm trying to figure out if there is a way to get stack_trace info from Xdebug similar to how an IDE like PhpStorm or NetBeans is getting it to store it and process it further.

Any help much appreciated.

LazyOne
  • 158,824
  • 45
  • 388
  • 391
Madhu
  • 13
  • 2

1 Answers1

0

You can configure (in your php.ini file) Xdebug to log trace into a file with xdebug.trace_output_XXX stuff. See Xdebug docs for more information about how to fine tune your export and format output.

Bertrand
  • 1,840
  • 14
  • 22
  • Thank you very much, I guess I could parse the log for now, while continuously search for any system software which latches on to XDebug and exposes an API. Best scenario, I end up creating my own – Madhu May 31 '18 at 00:19
  • I've made kinda try to integrate trace. See https://packagist.org/packages/liqueurdetoile/taste – Bertrand Jun 01 '18 at 00:54