Skip to content

Instantly share code, notes, and snippets.

@leonlaser
Created March 18, 2019 11:37
Show Gist options
  • Save leonlaser/04691eb2dfd7aef331b63da8cd1ec384 to your computer and use it in GitHub Desktop.
Save leonlaser/04691eb2dfd7aef331b63da8cd1ec384 to your computer and use it in GitHub Desktop.
[Show all php errors] Enable and show all php errors except for E_NOTICE #php #errors
<?php
error_reporting(E_ALL ^ E_NOTICE);
ini_set('display_errors', 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment