Skip to content

Instantly share code, notes, and snippets.

@epixa
Created February 26, 2011 03:58
Show Gist options
  • Save epixa/844922 to your computer and use it in GitHub Desktop.
Save epixa/844922 to your computer and use it in GitHub Desktop.
<?php
try {
try {
try {
throw new Exception();
} catch (Exception $e) {
echo 'third';
}
} catch (Exception $e) {
echo 'second';
}
} catch (Exception $e) {
echo 'first';
}
// output: third
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment