如何在PHP中回显整数的二进制值?我尝试使用pack('S',$var)
,但没有显示结果......
答案 0 :(得分:12)
答案 1 :(得分:6)
<?php
echo base_convert($number, 10, 2);
?>
http://php.net/manual/en/function.base-convert.php
string base_convert ( string $number , int $frombase , int $tobase )