How to hexdec in PHP
This article describe about hexdec() Function in PHP.
hexdec() Function
This function is used for convert the hexadecimal number to decimal number.
Syntax
Parameter |
Description |
hex_number |
Define hexadecimal number to convert |
Example
<html>
<body>
<?php
echo hexdec("1e") . "<br />";
echo hexdec("a") . "<br />";
echo hexdec("11ff") . "<br />";
echo hexdec("cceeff");
?>
</body>
</html> |
Output

You may also want to read these related articles Click here
Ask Your Question
Got a programming related question? You may want to post your question here
Programming Answers here