Skip to content

Instantly share code, notes, and snippets.

@abidibo
Created January 10, 2015 11:39
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 abidibo/ee6027384d25a19b86d4 to your computer and use it in GitHub Desktop.
Save abidibo/ee6027384d25a19b86d4 to your computer and use it in GitHub Desktop.
get integer complement
function getIntegerComplement( $n) {
$n = (int) $n;
$mask = bindec(str_repeat('1', strlen(decbin($n))));
$val = $n ^ $mask;
return $val;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment