Skip to content

Instantly share code, notes, and snippets.

@toshimaru
Created February 5, 2013 04:16
Show Gist options
  • Save toshimaru/4712121 to your computer and use it in GitHub Desktop.
Save toshimaru/4712121 to your computer and use it in GitHub Desktop.
<?php
// add exception_handle
function exception_handler($exception) {
echo "Uncaught exception: file:{$exception->getFile()} line:{$exception->getLine()} {$exception->getMessage()}", "\n";
}
set_exception_handler('exception_handler');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment