如何在 PHP 中回显整数的二进制值?我尝试使用pack('S',$var)
但它没有显示任何结果......
问问题
9144 次
2 回答
12
于 2012-05-16T10:08:36.313 回答
7
<?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 )
于 2012-05-16T10:09:26.767 回答