Skip to content

Instantly share code, notes, and snippets.

@cgray
Created August 18, 2015 06:25
Show Gist options
  • Save cgray/ce62c1addcce796c845b to your computer and use it in GitHub Desktop.
Save cgray/ce62c1addcce796c845b to your computer and use it in GitHub Desktop.
7 bit parity check in php
$bitsOn = ($parity = $num & 1) + !!($num & 2) + !!($num & 4) + !!($num & 8) + !!($num & 16) + !!($num & 32) + !!($num & 64);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment