Last active
April 21, 2020 17:32
-
-
Save binaryreverse/e5be19b7fb025d8ab3a4642969365514 to your computer and use it in GitHub Desktop.
Disable Xdebug var_dump limitations
This file contains 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
<?php | |
ini_set('xdebug.var_display_max_depth', -1); | |
ini_set('xdebug.var_display_max_children', -1); | |
ini_set('xdebug.var_display_max_data', -1); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment