Skip to content

Instantly share code, notes, and snippets.

@msztolcman
Created July 21, 2013 00:16
Show Gist options
  • Save msztolcman/6046966 to your computer and use it in GitHub Desktop.
Save msztolcman/6046966 to your computer and use it in GitHub Desktop.
<?php
var_dump (error_reporting());
var_dump (error_reporting(error_reporting(E_ALL|E_STRICT)));
var_dump (error_reporting());
ini_set('display_errors', 1);
/*
1 int(22519)
2 int(32767)
3 int(22519)
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment