Jump to: navigation, search

Php hexdec

From w3cyberlearnings

Contents

PHP function hexdec

This function converts hexadecimal to decimal number.

Syntax hexdec

X is hexadecimal number.

hexdec(X)

Example 1

<?php

echo hexdec('a');
echo "<br/>";
echo hexdec('1E1E');
echo "<br/>";
echo hexdec('40');
?>

Output

10
7710
64


Related Links


Navigation
Web
SQL
MISC
References