PHP dechex() Function

The dechex() function is used to converts an decimal number to a hexadecimal number.

Demo :



Type No :  
Hexadecimal number is : 0

Example :

Example 1: Type Decimal No : 1
Example 2: Type Decimal No : 10
Example 3: Type Decimal No : 1000

If you need to converts an decimal number to a Hexadecimal number following code useful to you.


<?php
 $dechex_no = 100;
 $result = dechex($dechex_no);
 echo $result;
?>

In the above code is used to converts an decimal number to a hexadecimal number.In the dechex() functions have used one arguments that name is int decimal_number.

Free Download Script :

If you need dechex() function demo code download from following link.

Download




Content