Skip to content

Instantly share code, notes, and snippets.

@eyecatchup
Last active February 23, 2016 11:56
Show Gist options
  • Select an option

  • Save eyecatchup/b5d92534d3c834cad8ce to your computer and use it in GitHub Desktop.

Select an option

Save eyecatchup/b5d92534d3c834cad8ce to your computer and use it in GitHub Desktop.
The only PHP exception handler you will ever need. ;-)
<?php
try {
// something
} catch (\Exception $e) {
header('Location: https://www.stackoverflow.com/search?q=[php]%20' . $e->getMessage());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment