当前位置:首页 > PHP教程 > php函数 > 列表

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

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-22 20:52:00 浏览: 评论:0 

这篇文章主要介绍了php实现阿拉伯数字和罗马数字相互转换的方法,涉及php字符串操作的相关技巧,具有一定参考借鉴价值,需要的朋友可以参考下,本文实例讲述了php实现阿拉伯数字和罗马数字相互转换的方法,分享给大家供大家参考,具体如下:

  1. <?php 
  2. // Function that calculates the roman string to the given number: 
  3. function dec2roman($f
  4.  // Return false if either $f is not a real number,  
  5.  //$f is bigger than 3999 or $f is lower or equal to 0:   
  6.   if(!is_numeric($f) || $f > 3999 || $f <= 0) return false; 
  7.  // Define the roman figures: 
  8.   $roman = array
  9.   'M' => 1000, 
  10.   'D' => 500, 
  11.   'C' => 100, 
  12.   'L' => 50, 
  13.   'X' => 10, 
  14.   'V' => 5, 
  15.   'I' => 1 
  16.   ); 
  17.  // Calculate the needed roman figures: 
  18.   foreach($roman as $k => $v
  19.   if(($amount[$k] = floor($f / $v)) > 0) 
  20.   $f -= $amount[$k] * $v
  21.  // Build the string: 
  22.   $return = ''
  23.   foreach($amount as $k => $v
  24.   { 
  25.    $return .= $v <= 3 ? str_repeat($k$v) : $k . $old_k
  26.    $old_k = $k;   
  27.   } 
  28.  // Replace some spacial cases and return the string: 
  29.   return str_replace(array('VIV','LXL','DCD'),array('IX','XC','CM'),$return); 
  30. // echo dec2romen(1981); 
  31. // Function to get the decimal value of a roman string: 
  32. function roman2dec($str = ''
  33.  // Return false if not at least one letter is in the string: 
  34.   if(is_numeric($str)) return false; 
  35.  // Define the roman figures: 
  36.   $roman = array
  37.   'M' => 1000, 
  38.   'D' => 500, 
  39.   'C' => 100, 
  40.   'L' => 50, 
  41.   'X' => 10, 
  42.   'V' => 5, 
  43.   'I' => 1 
  44.   ); 
  45.  // Convert the string to an array of roman values: 
  46.   for($i = 0; $i < strlen($str); $i++)  
  47.   if(isset($roman[strtoupper($str[$i])])) 
  48.   $values[] = $roman[strtoupper($str[$i])]; 
  49.  // Calculate the sum of that array: 
  50.   $sum = 0; 
  51.   while($current = current($values)) 
  52.   { 
  53.    $next = next($values); 
  54.    $next > $current ? $sum += $next - $current + 0 * next($values) : $sum += $current
  55.   } 
  56.  // Return the value: 
  57.   return $sum
  58. // echo roman2dec(IX);   
  59. ?>

Tags: php阿拉伯数字 php罗马数字

分享到: