Skip to content

Instantly share code, notes, and snippets.

@eddy8
Created April 29, 2014 03:10
Show Gist options
  • Save eddy8/11389824 to your computer and use it in GitHub Desktop.
Save eddy8/11389824 to your computer and use it in GitHub Desktop.
dec to bin
<?php
/**
* 不用内置函数自己实现十进制转二进制
* @param integer $num 十进制数
* @return string 二进制字符串
*/
function my_dec2bin($num){
if(!is_integer($num)){
return '';
}
$str = '';
$i = 1 << 30;
while($i){
if($num & $i){
$str .= '1';
} else {
$str .= '0';
}
$i = $i >> 1;
}
return $str;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment