Convert Decimal Number to Binary String using PHP October 16, 2020 PHP 0 Comments 495 Views decbin function <?php $decimalNumber = 20; $binaryString = decbin($decimalNumber); echo $binaryString;
Leave a Comment
Cancel reply