Created
March 27, 2017 15:02
-
-
Save Matheus-de-Souza/6b4b83aad61ea06340fc0c653a0448ca to your computer and use it in GitHub Desktop.
PHP Snippets
This file contains 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
<?php | |
// Ver para conferir os tipos de error reporting | |
// http://php.net/manual/pt_BR/function.error-reporting.php | |
error_reporting(E_ALL & ~E_DEPRECATED & ~E_WARNING); | |
ini_set('display_errors', 1); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment