Skip to content

Instantly share code, notes, and snippets.

@mindplay-dk
Created March 10, 2016 09:19
Show Gist options
  • Save mindplay-dk/2249af2617e2fe58d8a3 to your computer and use it in GitHub Desktop.
Save mindplay-dk/2249af2617e2fe58d8a3 to your computer and use it in GitHub Desktop.
DAFUQ PHP?
<?php
function kthxbai() {
$result = "hey";
try {
return $result;
} finally {
$result = "dafuq";
}
}
var_dump(kthxbai()); // => "dafuq"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment