View Single Post
  #30 (permalink)  
Old 04-19-2008, 02:25 AM
saravanan saravanan is offline
D-Web Sr.Programmer
 
Join Date: Jul 2007
Posts: 181
saravanan is on a distinguished road
Default Re: Mathematical functions in PHP

<?php
echo dechex("30") . "<br />";
echo dechex("10") . "<br />";
echo dechex("1587") . "<br />";
echo dechex("70");
?>

IT convert decimal number into hexadecimal number
output
1e
a
633
46
Reply With Quote