PHP decbin() - Math Functions
What is decbin Function?
How to convert a decimal number to binary in PHP?
Explanation
The "decbin()" function converts a decimal number to a binary number.
Syntax:
decbin(dec_number)
In the above syntax "dec_number" is the decimal number to be converted to binary number.
Example :
<?php
echo decbin(12) . "n";
echo decbin(26);
?>
Result :
1100
11010
In the above example the decimal numbers "12","26" are converted to binary numbers.