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

La funzione hexdec() in PHP

Questohexdec()La funzione converte un numero esadecimale in un numero decimale.

Sintassi

hexdec(val)

parametro

  • parametro val-il valore esadecimale da convertire.

restituisce

Questohexdec()La funzione restituisce il valore decimale di val, ossia l'intero.

Esempio

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

Risultato di output

13<br>14735