Skip to content

Instantly share code, notes, and snippets.

@Jesm
Last active August 29, 2015 14:16
Show Gist options
  • Save Jesm/869113bfa074a985f502 to your computer and use it in GitHub Desktop.
Save Jesm/869113bfa074a985f502 to your computer and use it in GitHub Desktop.
Enable errors in PHP
<?php
error_reporting(E_ERROR | E_CORE_ERROR | E_COMPILE_ERROR); // Just fatal erros
// error_reporting(E_ALL); // All levels of errors
ini_set('display_errors', 1); // Sets to display the errors on the page
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment