首页 > 开发 > PHP > 正文

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

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

这篇文章主要介绍了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. $return .= $v <= 3 ? str_repeat($k$v) : $k . $old_k
  25. $old_k = $k;  
  26. // Replace some spacial cases and return the string: 
  27. return str_replace(array('VIV','LXL','DCD'),array('IX','XC','CM'),$return); 
  28. // echo dec2romen(1981); 
  29. // Function to get the decimal value of a roman string: 
  30. function roman2dec($str = ''
  31. // Return false if not at least one letter is in the string: 
  32. if(is_numeric($str)) return false; 
  33. // Define the roman figures: 
  34. $roman = array
  35. 'M' => 1000, 
  36. 'D' => 500, 
  37. 'C' => 100, 
  38. 'L' => 50, 
  39. 'X' => 10, 
  40. 'V' => 5, 
  41. 'I' => 1 
  42. ); 
  43. // Convert the string to an array of roman values: 
  44. for($i = 0; $i < strlen($str); $i++)  
  45. if(isset($roman[strtoupper($str[$i])])) 
  46. $values[] = $roman[strtoupper($str[$i])]; 
  47. // Calculate the sum of that array: 
  48. $sum = 0; 
  49. while($current = current($values)) 
  50. $next = next($values); 
  51. $next > $current ? $sum += $next - $current + 0 * next($values) : $sum += $current
  52. // Return the value: 
  53. return $sum
  54. // echo roman2dec(IX);  
  55. ?> 

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

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