在这里,我面临一个我相信(或至少希望)已经解决了100万次的问题。 我得到的输入是一个字符串,表示以英制单位表示的对象长度。它可以是这样的:
$length = "3' 2 1/2\"";
或者像这样:
$length = "1/2\"";
或实际上我们通常会以任何其他方式编写它。
为了减少全局轮发明,我想知道是否有一些函数,类或正则表达式可以让我将英制长度转换为公制长度?
答案 0 :(得分:4)
Zend Framework有一个用于此目的的测量组件。我建议您查看一下 - here。
$unit = new Zend_Measure_Length($length,Zend_Measure_Length::YARD);
$unit -> convertTo(Zend_Measure_Length::METER);
答案 1 :(得分:3)
这是我的解决方案。它使用eval()来评估表达式,但不要担心,最后的正则表达式检查使它完全安全。
function imperial2metric($number) {
// Get rid of whitespace on both ends of the string.
$number = trim($number);
// This results in the number of feet getting multiplied by 12 when eval'd
// which converts them to inches.
$number = str_replace("'", '*12', $number);
// We don't need the double quote.
$number = str_replace('"', '', $number);
// Convert other whitespace into a plus sign.
$number = preg_replace('/\s+/', '+', $number);
// Make sure they aren't making us eval() evil PHP code.
if (preg_match('/[^0-9\/\.\+\*\-]/', $number)) {
return false;
} else {
// Evaluate the expression we've built to get the number of inches.
$inches = eval("return ($number);");
// This is how you convert inches to meters according to Google calculator.
$meters = $inches * 0.0254;
// Returns it in meters. You may then convert to centimeters by
// multiplying by 100, kilometers by dividing by 1000, etc.
return $meters;
}
}
例如,字符串
3' 2 1/2"
转换为表达式
3*12+2+1/2
得到评估
38.5
最终转换为0.9779米。
答案 2 :(得分:2)
英制字符串值有点复杂,所以我使用了以下表达式:
string pattern = "(([0-9]+)')*\\s*-*\\s*(([0-9])*\\s*([0-9]/[0-9])*\")*";
Regex regex = new Regex( pattern );
Match match = regex.Match(sourceValue);
if( match.Success )
{
int feet = 0;
int.TryParse(match.Groups[2].Value, out feet);
int inch = 0;
int.TryParse(match.Groups[4].Value, out inch);
double fracturalInch = 0.0;
if (match.Groups[5].Value.Length == 3)
fracturalInch = (double)(match.Groups[5].Value[0] - '0') / (double)(match.Groups[5].Value[2] - '0');
resultValue = (feet * 12) + inch + fracturalInch;
答案 3 :(得分:1)
或许查看units library?但是,它似乎没有PHP绑定。
答案 4 :(得分:1)
正则表达式看起来像这样:
"([0-9]+)'\s*([0-9]+)\""
(其中\ s表示空格 - 我不确定它在php中是如何工作的)。然后你提取第一个+第二个组并执行
(int(grp1)*12+int(grp2))*2.54
转换为厘米。