Skip to content

Instantly share code, notes, and snippets.

@acdameli
Created February 2, 2015 22:36
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 acdameli/b63a09c34e0992d1177d to your computer and use it in GitHub Desktop.
Save acdameli/b63a09c34e0992d1177d to your computer and use it in GitHub Desktop.
$ php -r "
function doSomething() {
try {
return true;
} finally {
echo \"finally hit\n\";
}
return false;
}
var_dump(doSomething());
"
finally hit
bool(true)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment