Skip to content

Instantly share code, notes, and snippets.

@Matheus-de-Souza
Created March 27, 2017 15:02
Show Gist options
  • Save Matheus-de-Souza/6b4b83aad61ea06340fc0c653a0448ca to your computer and use it in GitHub Desktop.
Save Matheus-de-Souza/6b4b83aad61ea06340fc0c653a0448ca to your computer and use it in GitHub Desktop.
PHP Snippets
<?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