Skip to content

Instantly share code, notes, and snippets.

@RobertWang
Created November 5, 2012 14:56
Show Gist options
  • Save RobertWang/4017566 to your computer and use it in GitHub Desktop.
Save RobertWang/4017566 to your computer and use it in GitHub Desktop.
php : fun : int2bin
function int2bin ( $int=0 ){
if ( $int>0 ) {
return int2bin ( floor($int/2) ) . $int % 2;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment