PHP.nl

decbin

decbin

Decimal to binary

string **decbin** int $num

Returns a string containing a binary representation of the given argument. num

numDecimal value to convert

Binary string representation of num

Voorbeeld: example

<?php
echo decbin(12) . "\n";
echo decbin(26);
?>
1100
11010

bindec``decoct``dechex``base_convert``printf``%b``%032b``%064b``sprintf``%b``%032b``%064b