php实现阿拉伯数字和罗马数字相互转换的方法


Posted in PHP onApril 17, 2015

本文实例讲述了php实现阿拉伯数字和罗马数字相互转换的方法。分享给大家供大家参考。具体如下:

<?php
// Function that calculates the roman string to the given number:
function dec2roman($f)
{
 // Return false if either $f is not a real number, 
 //$f is bigger than 3999 or $f is lower or equal to 0:  
  if(!is_numeric($f) || $f > 3999 || $f <= 0) return false;
 // Define the roman figures:
  $roman = array(
  'M' => 1000,
  'D' => 500,
  'C' => 100,
  'L' => 50,
  'X' => 10,
  'V' => 5,
  'I' => 1
  );
 // Calculate the needed roman figures:
  foreach($roman as $k => $v)
  if(($amount[$k] = floor($f / $v)) > 0)
  $f -= $amount[$k] * $v;
 // Build the string:
  $return = '';
  foreach($amount as $k => $v)
  {
   $return .= $v <= 3 ? str_repeat($k, $v) : $k . $old_k;
   $old_k = $k;  
  }
 // Replace some spacial cases and return the string:
  return str_replace(array('VIV','LXL','DCD'),array('IX','XC','CM'),$return);
}
// echo dec2romen(1981);
// Function to get the decimal value of a roman string:
function roman2dec($str = '')
{
 // Return false if not at least one letter is in the string:
  if(is_numeric($str)) return false;
 // Define the roman figures:
  $roman = array(
  'M' => 1000,
  'D' => 500,
  'C' => 100,
  'L' => 50,
  'X' => 10,
  'V' => 5,
  'I' => 1
  );
 // Convert the string to an array of roman values:
  for($i = 0; $i < strlen($str); $i++) 
  if(isset($roman[strtoupper($str[$i])]))
  $values[] = $roman[strtoupper($str[$i])];
 // Calculate the sum of that array:
  $sum = 0;
  while($current = current($values))
  {
   $next = next($values);
   $next > $current ? $sum += $next - $current + 0 * next($values) : $sum += $current;
  }
 // Return the value:
  return $sum;
}
// echo roman2dec(IX);  
?>

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

PHP 相关文章推荐
php中文本数据翻页(留言本翻页)
Oct 09 PHP
在windows iis5下安装php4.0+mysql之我见
Oct 09 PHP
php 常用类汇总 推荐收藏
May 13 PHP
一个显示某段时间内每个月的方法 返回由这些月份组成的数组
May 16 PHP
thinkphp的c方法使用示例
Feb 24 PHP
PHP中Header使用的HTTP协议及常用方法小结
Nov 04 PHP
WordPress中注册菜单与调用菜单的方法详解
Dec 18 PHP
php导出生成word的方法
Dec 25 PHP
WordPress用户登录框密码的隐藏与部分显示技巧
Dec 31 PHP
php中static和const关键字用法分析
Dec 07 PHP
PHP实现登陆表单提交CSRF及验证码
Jan 24 PHP
PHP判断是否是微信打开还是浏览器打开的方法
Feb 27 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
PHP生成唯一订单号的方法汇总
Apr 16 #PHP
微信access_token的获取开发示例
Apr 16 #PHP
You might like
PHP 获取远程文件内容的函数代码
2010/03/24 PHP
用PHP读取和编写XML DOM的实现代码
2011/02/03 PHP
php中unlink()、mkdir()、rmdir()等方法的使用介绍
2012/12/21 PHP
php上传apk后自动提取apk包信息的使用(示例下载)
2013/04/26 PHP
在一个form用一个SUBMIT(或button)分别提交到两个处理表单页面的代码
2007/02/15 Javascript
发一个自己用JS写的实用看图工具实现代码
2008/07/26 Javascript
工作需要写的一个js拖拽组件
2011/07/28 Javascript
js opener的使用详解
2014/01/11 Javascript
Jquery的Tabs内容轮换效果实现代码,几行搞定
2014/02/12 Javascript
使用JavaScript链式编程实现模拟Jquery函数
2014/12/21 Javascript
jquery中change()用法实例分析
2015/02/06 Javascript
js Element Traversal规范中的元素遍历方法
2018/04/19 Javascript
JavaScript中click和onclick本质区别与用法分析
2018/06/07 Javascript
jQuery选择器之基本选择器用法实例分析
2019/02/19 jQuery
VUE兄弟组件传值操作实例分析
2019/10/26 Javascript
微信小程序关键字变色实现代码实例
2019/12/13 Javascript
JavaScript基于面向对象实现的无缝滚动轮播示例
2020/01/17 Javascript
[49:18]2018DOTA2亚洲邀请赛 3.31 小组赛 A组 OG vs TNC
2018/04/01 DOTA
Python 代码性能优化技巧分享
2012/08/07 Python
python实现将pvr格式转换成pvr.ccz的方法
2015/04/28 Python
Python实时获取cmd的输出
2015/12/13 Python
python requests 使用快速入门
2017/08/31 Python
python中使用PIL制作并验证图片验证码
2018/03/15 Python
python 提取文件指定列的方法示例
2019/08/07 Python
Python使用百度api做人脸对比的方法
2019/08/28 Python
4款Python 类型检查工具,你选择哪个呢?
2020/10/30 Python
HTML5表单验证特性(知识点小结)
2020/03/10 HTML / CSS
意大利咖啡、浓缩咖啡和浓缩咖啡机:illy caffe
2019/03/20 全球购物
CK巴西官方网站:Calvin Klein巴西
2019/07/19 全球购物
一套比较完整的软件测试人员面试题
2012/05/13 面试题
饲料采购员岗位职责
2013/12/19 职场文书
冰淇淋开店创业计划书
2014/02/01 职场文书
超市店庆活动方案
2014/08/31 职场文书
二年级语文上册复习计划
2015/01/19 职场文书
2016年世界人口日宣传活动总结
2016/04/05 职场文书
Go语言 详解net的tcp服务
2022/04/14 Golang