Skip to content

Instantly share code, notes, and snippets.

@lloc
Created March 23, 2018 10:01
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 lloc/2cb1938febacc88981e5d9b6a4c70113 to your computer and use it in GitHub Desktop.
Save lloc/2cb1938febacc88981e5d9b6a4c70113 to your computer and use it in GitHub Desktop.
<?php
try {
// Something throws an Exception or Error.
} catch ( Throwable $t ) {
// will match only in PHP 7
} catch ( Exception $e ) {
// will be reached in PHP 5
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment