Skip to content

Instantly share code, notes, and snippets.

@codfish
Last active August 29, 2015 14:20
Show Gist options
  • Save codfish/f6a85c206c899d36dbbb to your computer and use it in GitHub Desktop.
Save codfish/f6a85c206c899d36dbbb to your computer and use it in GitHub Desktop.
Removes limits on xdebug variable output. If xdebug is installed these settings also affect native php functions like `var_dump`
<?php
// @see http://xdebug.org/docs/all_settings
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