Decbin () PHP Function
Tuesday February 17, 2009
The Decbin () PHP Function is used to convert a decimal into a binary number. The opposite function Bindec () is used to convert a binary into a decimal.
1100100
1100
<?phpThis returns the following binary:
echo(decbin(100) . "<br />");
echo(decbin(12) . "<br />");
?>
1100100
1100


Thatīs a really php function to know, keep it coming, this will be very good in designing a web calculator…