Metrik içine uzunluğu emperyal birimlerini dönüştürmek nasıl?

5 Cevap php

Here I am faced with an issue that I believe(or at least hope) was solved 1 million times already. What I got as the input is a string that represents a length of an object in imperial units. It can go like this:

$length = "3' 2 1/2\"";

ya da bunun gibi:

$length = "1/2\"";

ya da aslında başka bir şekilde biz normalde bunu yazardı.

Küresel tekerlek icat azaltmak için çaba, bana Metrik uzunluk içine Imperial uzunluğunu dönüştürmek sağlayacak bazı fonksiyon, sınıf veya regexp-ish bir şey olup olmadığını merak ediyorum?

5 Cevap

İşte benim çözümdür. Bu eval() ifadeyi değerlendirmek için, ama merak etmeyin kullanır, sonunda regex onay tamamen güvenli hale getirir.

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;
    }
}

Yani, örneğin, dize

3' 2 1/2"

ifade dönüştürülmüş olur

3*12+2+1/2

değerlendirilerek aldığı

38.5

Son olarak 0,9779 metre dönüştürülmüş olur ki.

Zend Framework sadece bu amaç için bir ölçüm bileşeni vardır. Ben bunu kontrol öneririz - here.

$unit = new Zend_Measure_Length($length,Zend_Measure_Length::YARD);
$unit -> convertTo(Zend_Measure_Length::METER);

Emperyal dize değerleri biraz daha karmaşıktır, bu yüzden ifadesini kullanılan şu:

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;

Belki units library check out? Olsa da, bunun için bağlayıcı bir PHP orada görünmüyor.

Sıradanifade bu gibi bir şey olacaktır:

"([0-9]+)'\s*([0-9]+)\""

(Burada \ s boşluk temsil - Ben php nasıl çalıştığını emin değilim). Sonra birinci + ikinci grup ayıklamak ve yapılacak

(int(grp1)*12+int(grp2))*2.54

santimetre dönüştürmek.