Php/docs/function.decbin

来自菜鸟教程
跳转至:导航、​搜索

decbin

(PHP 4, PHP 5, PHP 7)

decbin十进制转换为二进制


说明

decbin ( int $number ) : string

返回一字符串,包含有给定 number 参数的二进制表示。所能转换的最大数值为十进制的 4294967295,其结果为 32 个 1 的字符串。


参数

number

Decimal value to convert

Range of inputs on 32-bit machines

positive number


返回值

Binary string representation of number


范例

Example #1 decbin() 例子

<?phpecho decbin(12) . "\n";echo decbin(26);?>

以上例程会输出:


1100
11010

参见

  • bindec() - 二进制转换为十进制
  • decoct() - 十进制转换为八进制
  • dechex() - 十进制转换为十六进制
  • base_convert() - 在任意进制之间转换数字
  • printf() - 输出格式化字符串, using %b, %032b or %064b as the format
  • sprintf(), using %b, %032b or %064b as the format