Skip to content

Instantly share code, notes, and snippets.

@Korveld
Last active September 13, 2021 09:39
Show Gist options
  • Select an option

  • Save Korveld/97ee2341e0189d19c09aa3016afefd5a to your computer and use it in GitHub Desktop.

Select an option

Save Korveld/97ee2341e0189d19c09aa3016afefd5a to your computer and use it in GitHub Desktop.
Display All PHP Errors
<?php
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
error_reporting(E_WARNING);
error_reporting(E_NOTICE);
// source: https://stackify.com/display-php-errors/#:~:text=Quickly%20Show%20All%20PHP%20Errors,1)%3B%20error_reporting(E_ALL)%3B
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment