How to use dechex in PHP
This article describe about dechex() Function in PHP.
dechex() Function
For convert decimal number to hexadecimal number use dechex() function.
Syntax
Parameter |
Description |
dec_number |
Define the decimal number to convert |
Example
<html>
<body>
<?php
echo dechex("50") . "<br />";
echo dechex("20") . "<br />";
echo dechex("399") . "<br />";
echo dechex("55");
?>
</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