PHP Program to Converter a Decimal to Binary
You are Here:
Converter a Number from Decimal to Binary
In the following example, we will convert a Decimal Number (500) to Binary Number (111110100).
Tips: It is recommended to use our online Decimal to Binary calculator for better understanding.
Example
PHP Compiler
<?php
$num = 500;
$arr = [];
$i = -1;
while($num != 0)
{
$i++;
$arr[$i] = $num % 2;
$num = floor($num / 2);
}
echo "Binary number of 500 (decimal) is ";
// reverse the array and display
for($j=$i; $j>=0; $j--)
echo $arr[$j];
?>
Output
Binary number of 500 (decimal) is 111110100
Reminder
Hi Developers, we almost covered 90% of String functions and Interview Question on PHP with examples for quick and easy learning.
We are working to cover every Single Concept in PHP.
Please do google search for:
Join Our Channel
Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.
This channel is primarily useful for Full Stack Web Developer.