Skip to content

Instantly share code, notes, and snippets.

View icerlion's full-sized avatar

icerlion

  • rockfrost.com
  • ShangHai
View GitHub Profile
@icerlion
icerlion / gist:4dafb07b9ac99cd8be0a2f2a37ccdab7
Created January 4, 2025 18:04 — forked from timonweb/gist:3165322
Code to catch all PHP errors which result in 500 Error Code. Include this snippet at the beginning of index.php file
<?php
define('E_FATAL', E_ERROR | E_USER_ERROR | E_PARSE | E_CORE_ERROR |
E_COMPILE_ERROR | E_RECOVERABLE_ERROR);
define('ENV', 'dev');
//Custom error handling vars
define('DISPLAY_ERRORS', TRUE);
define('ERROR_REPORTING', E_ALL | E_STRICT);