Skip to content

Instantly share code, notes, and snippets.

@horitaku1124
Last active August 29, 2015 14:10
Show Gist options
  • Save horitaku1124/44a4f1f3a1e45632649a to your computer and use it in GitHub Desktop.
Save horitaku1124/44a4f1f3a1e45632649a to your computer and use it in GitHub Desktop.
PHP settings
<?php
ini_set('display_errors', 1);
set_error_handler(function ($errorNo, $errorMessage, $errorFile, $errorLine) {
throw new ErrorException($errorMessage, 0, $errorNo, $errorFile, $errorLine);
});
display_errors = On
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment