Debugging PHP in XAMPP

Is there any default debugger installed on the XAMPP / WAMP server, or have we manually downloaded and configured the debugger? Also recommend the best PHP debugger.

+7
source share
1 answer

If you want to use Netbeans and Xampp with debugging, just open c: \ xampp \ php \ php.ini and add these lines. It worked for me like a charm.

xdebug.remote_handler="dbgp" xdebug.remote_enable=on xdebug.remote_port =9000 xdebug.remote_enable = 1 xdebug.profiler_enable = off xdebug.profiler_trigger = off xdebug.profiler_output_name = "cachegrind.out.%t-%s" xdebug.profiler_output_dir = "C:\xampp\tmp" 

Or check it out: check it out: https://www.youtube.com/watch?v=HbJOP0YcSjs

+2
source

All Articles