Skip to content

Instantly share code, notes, and snippets.

@repejota
Created April 30, 2014 10:41
Show Gist options
  • Save repejota/e600a5d61c0cf33c8bb7 to your computer and use it in GitHub Desktop.
Save repejota/e600a5d61c0cf33c8bb7 to your computer and use it in GitHub Desktop.
Show errors in PHP
<?php
// Report all errors except E_NOTICE
error_reporting(E_ALL & ~E_NOTICE);
// Report all PHP errors (see changelog)
error_reporting(E_ALL);
ini_set("display_errors", 1);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment