Skip to content

Instantly share code, notes, and snippets.

@hughrawlinson
Created February 11, 2016 14:33
Show Gist options
  • Save hughrawlinson/61dc6bfd24dc3b8be649 to your computer and use it in GitHub Desktop.
Save hughrawlinson/61dc6bfd24dc3b8be649 to your computer and use it in GitHub Desktop.
PHP Error Handling
// Excellent work, Simon O'Shea. 😂
<?php
try {
// Something
} catch (Exception $e) {
header("location: https://stackoverflow.com/search?q=[php] ".$e->getMessage());
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment