Convert Decimal Number to Hexadecimal String using PHP October 22, 2020 PHP 0 Comments 415 Views dechex function <?php $decimalNumber = 60; $hexString = dechex($decimalNumber); echo $hexString;
Leave a Comment
Cancel reply