In PHP decbin function is used to convert anything to binary
Example:
<?php
$a = "3";
$b = 4;
echo decbin($a)."<br>";
echo decbin($b);
?>
Output:
11
100
Example:
<?php
$a = "3";
$b = 4;
echo decbin($a)."<br>";
echo decbin($b);
?>
Output:
11
100
The Magician Of Linux
0 comments:
Post a Comment