Skip to content

Instantly share code, notes, and snippets.

@lode
Created February 2, 2016 10:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lode/6592e620c6186c34e327 to your computer and use it in GitHub Desktop.
Save lode/6592e620c6186c34e327 to your computer and use it in GitHub Desktop.
Error handling
<?php
ini_set('display_startup_errors', 1);
ini_set('display_errors', 1);
error_reporting(-1);
echo 'start'.PHP_EOL;
@file('foo');
echo var_export(error_get_last(), true).PHP_EOL;
echo 'end'.PHP_EOL;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment