Skip to content

Instantly share code, notes, and snippets.

@Lovor01
Created December 20, 2024 14:46
Show Gist options
  • Save Lovor01/63c055ab7976b7408522bd5525b077fc to your computer and use it in GitHub Desktop.
Save Lovor01/63c055ab7976b7408522bd5525b077fc to your computer and use it in GitHub Desktop.
Xdebug

PHP 8+

[xdebug]
;off develop coverage debug gcstats profile trace
;step debugging
xdebug.mode=debug
; yes, no, trigger; default (trigger on debug mode)
xdebug.start_with_request=trigger
xdebug.output_dir="C:\Wamp.NET\tools\profile"
xdebug.var_display_max_data=8192
xdebug.var_display_max_children=256
; xdebug.use_compression = true

PHP7.4 - xdebug 2.9.6

[xdebug]
;off develop coverage debug gcstats profile trace
;step debugging
xdebug.remote_autostart=On
xdebug.remote_enable=On
xdebug.remote_port=9003
xdebug.remote_host=127.0.0.1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment