Skip to content

Instantly share code, notes, and snippets.

@desarrolla2
Created October 15, 2014 07:53
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 desarrolla2/c6dcac11c21c46ce39d9 to your computer and use it in GitHub Desktop.
Save desarrolla2/c6dcac11c21c46ce39d9 to your computer and use it in GitHub Desktop.
<?php
ini_set('display_errors',0);
register_shutdown_function('shutdown');
$obj = new stdClass();
$obj->method();
function shutdown()
{
if(!is_null($e = error_get_last()))
{
var_dump($e);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment