Created
September 5, 2016 12:22
-
-
Save dreammonkey/2c59288602aa86a319b87afa60594062 to your computer and use it in GitHub Desktop.
PHP xdebug modify limits
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; 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