Created
November 5, 2012 14:56
-
-
Save RobertWang/4017566 to your computer and use it in GitHub Desktop.
php : fun : int2bin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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