Php decbin
From w3cyberlearnings
Contents |
PHP function decbin
This function converts decimal to binary number, and it returns string representation of number.
Syntax decbin
X is a given number.
decbin(X);
Example 1
<?php echo decbin(8); echo "<br/>"; echo decbin(255); ?>
Output
1000 11111111