Created
October 17, 2012 23:20
-
-
Save plasticbrain/3908963 to your computer and use it in GitHub Desktop.
PHP: Error Reporting
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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