Skip to content

Instantly share code, notes, and snippets.

@plasticbrain
Created October 17, 2012 23:20
PHP: Error Reporting
// Report ALL errors, and show them to the user
error_reporting(E_ALL);
ini_set('display_errors', 1);
// Log errors to log file, and do NOT show them to the user
ini_set('log_errors', 1);
ini_set('display_errors', 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment