Created
May 14, 2012 14:04
-
-
Save cspray/2694189 to your computer and use it in GitHub Desktop.
Xdebug ini settings to show more info on var_dump
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 | |
// Displays all array indices and object properties | |
ini_set('xdebug.var_display_max_children', -1); | |
// Displays all string data dumped | |
ini_set('xdebug.var_display_max_data', -1); | |
// Controls nested level displayed, maximum is 1023 | |
ini_set('xdebug.var_display_max_depth', -1); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment