Search This Blog

  • ()
  • ()
Show more

PHP Tutorial - PHP Number Convert

Convert a hexadecimal number to octal number The following code shows how to convert a hexadecimal number to octal number. // w ww. ja v ...

Convert a hexadecimal number to octal number


The following code shows how to convert a hexadecimal number to octal number.


// w ww. ja v a 2 s.c o m
<?php
$hex = "E196";
echo base_convert($hex,16,8);
?>


The code above generates the following result.


Convert decimal number to binary number


The following code shows how to convert decimal to binary.


/*from w w w .j a v a 2s . c o m*/
<?php
echo decbin("3") . "<br>";
echo decbin("1") . "<br>";
echo decbin("2014") . "<br>";
echo decbin("7");
?>


The code above generates the following result.


Convert decimal to hexadecimal


The following code shows how to convert decimal to hexadecimal.


/*ww w . j a v a2 s. c om*/
<?php
echo dechex("30") . "<br>";
echo dechex("10") . "<br>";
echo dechex("2014") . "<br>";
echo dechex("70");
?>


The code above generates the following result.


Convert decimal to octal


The following code shows how to convert decimal to octal.


/* ww w . ja va 2 s .com*/
<?php
echo decoct("30") . "<br>";
echo decoct("10") . "<br>";
echo decoct("2014") . "<br>";
echo decoct("70");
?>


The code above generates the following result.







Convert binary to decimal


The following code shows how to convert binary to decimal.


/*from www . jav a2s . c o m*/
<?php
echo bindec("0011") . "<br>";
echo bindec("01") . "<br>";
echo bindec("11000110011") . "<br>";
echo bindec("111");
?>


The code above generates the following result.







Convert octal to decimal


The following code shows how to convert octal to decimal.


/*from w ww. java 2s . c o m*/
<?php
echo octdec("36") . "<br>";
echo octdec("12") . "<br>";
echo octdec("2014") . "<br>";
echo octdec("106");
?>


The code above generates the following result.







Convert an octal number to a decimal number


The following code shows how to convert an octal number to a decimal number.


/*w w w. ja v a 2 s. co m*/
<?php
$oct = "0031";
echo base_convert($oct,8,10);
?>


The code above generates the following result.


Convert an octal number to a hexadecimal number


The following code shows how to convert an octal number to a hexadecimal number.


/*from w w w.ja v a 2 s . c om*/
<?php
$oct = "364";
echo base_convert($oct,8,16);
?>


The code above generates the following result.


Convert hexadecimal to decimal


The following code shows how to convert hexadecimal to decimal.


<?php// w w w. java2 s .c o m
echo hexdec("1e") . "<br>";
echo hexdec("a") . "<br>";
echo hexdec("11ff") . "<br>";
echo hexdec("cceeff");
?>


The code above generates the following result.


Convert hexadecimal values to ASCII characters


The following code shows how to convert hexadecimal values to ASCII characters.



<?php
echo hex2bin("48656c");
?>


The code above generates the following result.

COMMENTS

Name

apple,2,Article,14,At home,13,Author,14,Beauty,1,Biography,2,blackberry,1,Business,6,Cars,5,Celebrity,13,conspiraci,15,Fashion,5,galaxy,1,Gallery,1,Games,11,google,1,Hair,1,Health amp; Fitness,2,Histori,11,Home,169,HOSTING,27,HTML,7,imac,1,Image,1,iphone,1,Itcyber,7,Kuran,31,Lajme,34,Life amp; Love,1,Makeup amp; Skincare,1,mobile,5,monitor,1,Movies,2,News,5,No category,5,Photography,6,PHP,30,Poezi,24,POEZI amp; TEKSTE,2,Post,14,PROGRAMMIM,46,Relationships,1,review,6,samsung,1,Seo,7,Softvare,4,Sport,5,Sports,7,Stars,5,Tag,7,Tags,7,Tech,30,Teknologji,37,THEMES,3,Tutorials,191,Video,47,Videos,4,Vip News,2,Webhosting,67,WordPress,7,World,13,
ltr
item
Cr337: PHP Tutorial - PHP Number Convert
PHP Tutorial - PHP Number Convert
http://www.java2s.com/Tutorials/PHPImage/myResult/C/CONVERT_A_HEXADECIMAL_NUMBER_TO_OCTAL_NUMBER__BA764F873A8D87F189EC.PNG
Cr337
https://cr337.blogspot.com/2016/03/php-tutorial-php-number-convert.html
https://cr337.blogspot.com/
http://cr337.blogspot.com/
http://cr337.blogspot.com/2016/03/php-tutorial-php-number-convert.html
true
5516280490839897951
UTF-8
Loaded All Posts Not found any posts VIEW ALL Readmore Reply Cancel reply Delete By Home PAGES POSTS View All RECOMMENDED FOR YOU LABEL ARCHIVE SEARCH ALL POSTS Not found any post match with your request Back Home Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sun Mon Tue Wed Thu Fri Sat January February March April May June July August September October November December Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec just now 1 minute ago $$1$$ minutes ago 1 hour ago $$1$$ hours ago Yesterday $$1$$ days ago $$1$$ weeks ago more than 5 weeks ago Followers Follow THIS CONTENT IS PREMIUM Please share to unlock Copy All Code Select All Code All codes were copied to your clipboard Can not copy the codes / texts, please press [CTRL]+[C] (or CMD+C with Mac) to copy