Skip to content

Instantly share code, notes, and snippets.

@stevenliebregt
Created May 17, 2018 20:16
Show Gist options
  • Save stevenliebregt/3788f670346181454c8a8301ac9871e5 to your computer and use it in GitHub Desktop.
Save stevenliebregt/3788f670346181454c8a8301ac9871e5 to your computer and use it in GitHub Desktop.
PHP ini debug header so I won't forget the options.
<?php
error_reporting(E_ALL);
ini_set('display_errors', '1');
ini_set('error_reporting', '1');
ini_set('xdebug.var_display_max_depth', 10);
ini_set('xdebug.var_display_max_children', 256);
ini_set('xdebug.var_display_max_data', 1024);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment