If you want to convert hexadecimal number to decimal number then use hexdec() function for this.
PHP hexdec() Function Example:
If you want to convert hexadecimal number to decimal number then use hexdec() function for this. This is the easy way to convert hexadecimal number to decimal number.
Syntax:
hexdec(hexadecemal_number)
Example:
<?php // hexa decimal to decimal conversion with the help of hexdec() function echo hexdec("1eda") . "<br />"; echo hexdec("abcdef") . "<br />"; echo hexdec("A11") . "<br />"; ?>
Output:
The output is:
7898 11259375 2577
[ 0 ] Comments