English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
Thishexdec()
The function converts a hexadecimal number to a decimal number.
hexdec(val)
val-the hexadecimal to be converted.
Thishexdec()
The function returns the decimal value of val, that is, the hexadecimal.
<?php echo hexdec("d") . "<br>"; echo hexdec("398f"); ?>
Output Result
13<br>14735