Switch to full style
:read: Start PHP with us. Includes topics to help you in php
Post a reply

convert hexadecimal to decimal

Mon Oct 27, 2008 1:03 pm

Code:
<?php
$orig_dec
= 255;
$dec2hex = dechex($orig_dec);
$hex2dec = hexdec($dec2hex);
echo
"original decimal number: $orig_dec <br>";
echo
"new hexadecimal number: $dec2hex <br>";
echo
"back to decimal: $hex2dec <br>";
?>




Post a reply
  Related Posts  to : convert hexadecimal to decimal
 convert binary number to decimal     -  
 convert integer number to octal,hexadecimal number systems     -  
 convert octal number to decimal number     -  
 convert decimal number to octal number     -  
 add sequence of decimal numbers     -  
 Scale double number using big decimal     -  
 conversion from binary to decimal numbers as string     -  
 How to Convert WMV to AVI on Mac     -  
 convert word, Excel to PDF     -  

Topic Tags

PHP Variables