Skip to content

Instantly share code, notes, and snippets.

@xavismeh
Created April 8, 2015 14:25
Show Gist options
  • Save xavismeh/00cc4104bd6da23b5431 to your computer and use it in GitHub Desktop.
Save xavismeh/00cc4104bd6da23b5431 to your computer and use it in GitHub Desktop.
function f($a, $k) {
$b = $a;
$c = &$k;
$b[$k] = null;
if (null === $a[$k]) {
$a[$k] = $c;
return true;
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment