How to hexdec in PHP

This article describe about hexdec() Function in PHP.
  • 1213

hexdec() Function

This function is used for convert the hexadecimal number to decimal number.

Syntax

hexdec(hex_number)

 

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


hexdecphp.jpg

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

Categories

More Articles

© 2020 DotNetHeaven. All rights reserved.