首页 > 开发 > PHP > 正文

php实现将任意进制数转换成10进制的方法

2024-05-04 23:34:25
字体:
来源:转载
供稿:网友

这篇文章主要介绍了php实现将任意进制数转换成10进制的方法,涉及php数制转换的相关技巧,非常具有实用价值,需要的朋友可以参考下

本文实例讲述了php实现将任意进制数转换成10进制的方法。分享给大家供大家参考。具体如下:

php将任意进制的数转换成10进制,例如8进制转换成10进制,16进制转换成10进制

 

 
  1. <?php 
  2. # Show the steps involved in converting a number  
  3. # from any base (like octal or hex) to base 10 
  4. # See below for examples, instructions and copyright 
  5. function show_convert_to_base_10 ($number$base
  6. // If the number contains a decimal component 
  7. if (strstr ($number'.')) 
  8. // Get the integer and decimal components 
  9. list ($integer$decimal) = explode ('.'$number); 
  10. else 
  11. // The number is an integer 
  12. $integer = $number
  13. print "<b>Convert the base $base number $number to a 
  14. base 10 number:</b><blockquote>"; 
  15. print "Convert the integer component ($integer) of the 
  16. number:<blockquote>"; 
  17. // Compute the value of the integer component 
  18. // Loop through the integer digit by digit 
  19. // Reverse the number for easier handling 
  20. $integer = strrev ($integer); 
  21. $length = strlen ($integer); 
  22. for ($pos = 0; $pos < $length; ++$pos
  23. /* 
  24. PHP lets you treat strings and numbers like arrays 
  25. Specify an offset and get the character at that 
  26. position 
  27. */ 
  28. $digit = $integer[$pos]; 
  29. // Handle character values for digits 
  30. // (for bases greater than 10) 
  31. if (eregi ('[a-z]'$digit)) 
  32. $digit_value = 
  33. (ord (strtolower ($digit)) 
  34. - ord ('a')) + 10; 
  35. $digit = "$digit ($digit_value)"
  36. else 
  37. $digit_value = $digit
  38. // Multiply the current digit by the radix 
  39. // raised to the power of the current position 
  40. $result = $digit_value * pow ($base$pos); 
  41. print "Multiply the value of the digit at position 
  42. $pos by the value of the radix ($base) raised 
  43. to the power of the position ($pos):<br/>"; 
  44. print "$digit * $base<sup>$pos</sup> = $result 
  45. <br/><br/>"; 
  46. $sums[] = $result
  47. print '</blockquote>'
  48. if (isset ($decimal)) 
  49. print "Convert the decimal component (0.$decimal
  50. of the number:<blockquote>"; 
  51. // Pad the number with a leading 0 so that we can 
  52. // start at position 1 
  53. $decimal = '0'.$decimal
  54. $length = strlen ($decimal); 
  55. for ($pos = 1; $pos < $length; ++$pos) { 
  56. $digit = $decimal[$pos]; 
  57. // Handle character values for digits 
  58. // (for bases greater than 10) 
  59. if (eregi ('[a-z]'$digit)) 
  60. $digit_value = 
  61. (ord (strtolower ($digit)) 
  62. - ord ('a')) + 10; 
  63. $digit = "$digit ($digit_value)"
  64. else 
  65. $digit_value = $digit
  66. // Multiply the current digit by the radix 
  67. // raised to the power of the current position 
  68. $result = $digit_value * pow (1/$base$pos); 
  69. print "Multiply the value of the digit at 
  70. position $pos by the value of the 1/radix 
  71. ($base) raised to the power of the position 
  72. ($pos):<br/>"; 
  73. print "$digit * 1/$base<sup>$pos</sup> = 
  74. $result<br/><br/>"; 
  75. $sums[] = $result
  76. print '</blockquote>'
  77. $sums = implode (' + '$sums); 
  78. eval ("/$base_10_value = $sums;"); 
  79. print "</blockquote>The value of the base $base number 
  80. $number in base 10 is $base_10_value. <br/>"; 
  81. print "This number is derived from the sum of the values 
  82. of the previous operations ($sums). <br/> <br/>"; 

希望本文所述对大家的php程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表