Skip to content

Instantly share code, notes, and snippets.

@dreammonkey
Created September 5, 2016 12:22
Show Gist options
  • Save dreammonkey/2c59288602aa86a319b87afa60594062 to your computer and use it in GitHub Desktop.
Save dreammonkey/2c59288602aa86a319b87afa60594062 to your computer and use it in GitHub Desktop.
PHP xdebug modify limits
; with sane limits
xdebug.var_display_max_depth = 5
xdebug.var_display_max_children = 256
xdebug.var_display_max_data = 1024
; with no limits
; (maximum nesting is 1023)
xdebug.var_display_max_depth = -1
xdebug.var_display_max_children = -1
xdebug.var_display_max_data = -1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment