How to use decbin in PHP
This article describe about decbin() Function in PHP.
decbin() Function
For convert decimal number to binary number use decbin() function.
Syntax
Parameter |
Description |
dec_number |
Define the decimal number to convert |
Example
<html>
<body>
<?php
echo decbin("4") . "<br />";
echo decbin("1") . "<br />";
echo decbin("399") . "<br />";
echo decbin("15");
?>
</body>
</html> |
Output

You may also want to read these related articles Click here
Ask Your Question
Got a programming related question? You may want to post your question here
Programming Answers here