Skip to content

Instantly share code, notes, and snippets.

@binaryreverse
Last active April 21, 2020 17:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save binaryreverse/e5be19b7fb025d8ab3a4642969365514 to your computer and use it in GitHub Desktop.
Save binaryreverse/e5be19b7fb025d8ab3a4642969365514 to your computer and use it in GitHub Desktop.
Disable Xdebug var_dump limitations
<?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