Convert Hexadecimal String to Decimal Number using PHP October 23, 2020 PHP 0 Comments 412 Views hexdec function <?php $hexString = '3c'; $decimalNumber = hexdec($hexString); echo $decimalNumber;
Leave a Comment
Cancel reply