Re: Mathematical functions in PHP <?php
echo decbin("3") . "<br />";
echo decbin("1") . "<br />";
echo decbin("1587") . "<br />";
echo decbin("7");
?>
this function to convert the decimal number into binary number
Answer for above code
11
1
11000110011
111 |