English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

hexdec() function in PHP

Thishexdec()The function converts a hexadecimal number to a decimal number.

Syntax

hexdec(val)

parameter

  • val-the hexadecimal to be converted.

returns

Thishexdec()The function returns the decimal value of val, that is, the hexadecimal.

Example

<?php
   echo hexdec("d") . "<br>";
   echo hexdec("398f");
?>

Output Result

13<br>14735