PHP Program to Converter a Binary to Decimal
You are Here:
Converter a Number from Binary to Decimal
In the following example, we will convert a Binary number (1000001) to a Decimal number (65).
Tips: It is recommended to use our online Binary to Decimal converter for better understanding.
Example
PHP Compiler
<?php
$num = 1000001;
$arr = [];
$i = -1;
$total = 0;
while($num != 0)
{
$i++;
$arr[$i] = $num % 10;
$num = $num / 10;
$num = floor($num);
}
for($j=$i; $j>=0; $j--)
$total += ($arr[$j] * pow(2, $j));
echo "Decimal number of 1000001 (binary) is $total";
?>
Output
Decimal number of 1000001 (binary) is 65
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.