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


Posted in PHP onApril 17, 2015

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

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

<?php
# Show the steps involved in converting a number 
# from any base (like octal or hex) to base 10
# See below for examples, instructions and copyright
function show_convert_to_base_10 ($number, $base)
{
 // If the number contains a decimal component
 if (strstr ($number, '.'))
 {
  // Get the integer and decimal components
  list ($integer, $decimal) = explode ('.', $number);
 }
 else
 {
  // The number is an integer
  $integer = $number;
 }
  print "<b>Convert the base $base number $number to a
  base 10 number:</b><blockquote>";
  print "Convert the integer component ($integer) of the
   number:<blockquote>";
 // Compute the value of the integer component
 // Loop through the integer digit by digit
 // Reverse the number for easier handling
 $integer = strrev ($integer);
 $length = strlen ($integer);
 for ($pos = 0; $pos < $length; ++$pos)
 {
  /*
   PHP lets you treat strings and numbers like arrays
   Specify an offset and get the character at that
   position
  */
   $digit = $integer[$pos];
  // Handle character values for digits
  // (for bases greater than 10)
  if (eregi ('[a-z]', $digit))
  {
   $digit_value =
     (ord (strtolower ($digit))
     - ord ('a')) + 10;
    $digit = "$digit ($digit_value)";
  }
  else
  {
   $digit_value = $digit;
  }
  // Multiply the current digit by the radix
  // raised to the power of the current position
  $result = $digit_value * pow ($base, $pos);
   print "Multiply the value of the digit at position
    $pos by the value of the radix ($base) raised
    to the power of the position ($pos):<br/>";
   print "$digit * $base<sup>$pos</sup> = $result
    <br/><br/>";
   $sums[] = $result;
 }
 print '</blockquote>';
 if (isset ($decimal))
 {
   print "Convert the decimal component (0.$decimal)
   of the number:<blockquote>";
  // Pad the number with a leading 0 so that we can
  // start at position 1
  $decimal = '0'.$decimal;
  $length = strlen ($decimal);
   for ($pos = 1; $pos < $length; ++$pos) {
   $digit = $decimal[$pos];
   // Handle character values for digits
   // (for bases greater than 10)
   if (eregi ('[a-z]', $digit))
   {
     $digit_value =
     (ord (strtolower ($digit))
     - ord ('a')) + 10;
      $digit = "$digit ($digit_value)";
   }
   else
   {
     $digit_value = $digit;
   }
   // Multiply the current digit by the radix
   // raised to the power of the current position
   $result = $digit_value * pow (1/$base, $pos);
    print "Multiply the value of the digit at
    position $pos by the value of the 1/radix
    ($base) raised to the power of the position
    ($pos):<br/>";
    print "$digit * 1/$base<sup>$pos</sup> =
    $result<br/><br/>";
    $sums[] = $result;
  }
  print '</blockquote>';
 }
 $sums = implode (' + ', $sums);
 eval ("\$base_10_value = $sums;");
  print "</blockquote>The value of the base $base number
  $number in base 10 is $base_10_value. <br/>";
  print "This number is derived from the sum of the values
  of the previous operations ($sums). <br/> <br/>";
}

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

PHP 相关文章推荐
PHP4中实现动态代理
Oct 09 PHP
php模块memcache和memcached区别分析
Jun 14 PHP
PHP中extract()函数的定义和用法
Aug 17 PHP
PHP 自定义错误处理函数trigger_error()
Mar 26 PHP
PHP文件锁函数flock()详细介绍
Nov 18 PHP
PHP面向对象之工作单元(实例讲解)
Jun 26 PHP
PHP文件管理之实现网盘及压缩包的功能操作
Sep 20 PHP
PDO::beginTransaction讲解
Jan 27 PHP
PHP实现的策略模式示例
Mar 20 PHP
PHP消息队列实现及应用详解【队列处理订单系统和配送系统】
May 20 PHP
PHP查找一列有序数组是否包含某值的方法
Feb 07 PHP
php+ajax实现文件切割上传功能示例
Mar 03 PHP
php从数据库查询结果生成树形列表的方法
Apr 17 #PHP
php实现阿拉伯数字和罗马数字相互转换的方法
Apr 17 #PHP
php实现根据词频生成tag云的方法
Apr 17 #PHP
php计算两个坐标(经度,纬度)之间距离的方法
Apr 17 #PHP
php使用GD创建保持宽高比缩略图的方法
Apr 17 #PHP
PHP中preg_match正则匹配中的/u、/i、/s含义
Apr 17 #PHP
php和editplus正则表达式去除空白行
Apr 17 #PHP
You might like
php输出xml必须header的解决方法
2014/10/17 PHP
浅谈ThinkPHP的URL重写
2014/11/25 PHP
教你php如何实现验证码
2016/01/20 PHP
深入剖析浏览器退出之后php还会继续执行么
2016/05/17 PHP
$()JS小技巧
2007/07/21 Javascript
用jQuery扩展自写的 UI导航
2010/01/13 Javascript
不使用浏览器运行javascript代码的方法
2013/07/24 Javascript
js保留两位小数使用toFixed实现
2013/07/29 Javascript
jQuery实现将页面上HTML标签换成另外标签的方法
2015/06/09 Javascript
理解js对象继承的N种模式
2016/01/25 Javascript
浅谈JS继承_借用构造函数 &amp; 组合式继承
2016/08/16 Javascript
微信小程序 表单Form实例详解(附源码)
2016/12/22 Javascript
vue2.0组件之间传值、通信的多种方式(干货)
2018/02/10 Javascript
vue权限管理系统的实现代码
2019/01/17 Javascript
在 Vue.js中优雅地使用全局事件的方法
2019/02/01 Javascript
微信小程序学习笔记之跳转页面、传递参数获得数据操作图文详解
2019/03/28 Javascript
Vue基于vuex、axios拦截器实现loading效果及axios的安装配置
2019/04/26 Javascript
基于layui轮播图满屏是高度自适应的解决方法
2019/09/16 Javascript
vue如何搭建多页面多系统应用
2020/06/17 Javascript
Vue按时间段查询数据组件使用详解
2020/08/21 Javascript
如何手写一个简易的 Vuex
2020/10/10 Javascript
[03:11]2014DOTA2国际邀请赛-VG掉入败者组 独家专访357
2014/07/19 DOTA
Python实现抓取网页并且解析的实例
2014/09/20 Python
Tornado协程在python2.7如何返回值(实现方法)
2017/06/22 Python
Python实现输出程序执行进度百分比的方法
2017/09/16 Python
Python 实现两个服务器之间文件的上传方法
2019/02/13 Python
python flask框架实现传数据到js的方法分析
2019/06/11 Python
opencv导入头文件时报错#include的解决方法
2019/07/31 Python
python 字典套字典或列表的示例
2019/12/16 Python
继承权公证书
2014/04/09 职场文书
经贸日语专业自荐信
2014/09/02 职场文书
小学教师师德师风自我评价
2015/03/04 职场文书
2015质检员个人年终工作总结
2015/10/23 职场文书
如何用JavaScript实现一个数组惰性求值库
2021/05/05 Javascript
python opencv通过按键采集图片源码
2021/05/20 Python
学会用Python实现滑雪小游戏,再也不用去北海道啦
2021/05/20 Python