-1

高さの文字列をインチに変換しようとしているので、基本的に文字列$height = "5' 10\""を 70 インチに変換する必要があります。

文字列から 2 つの int 値を取得するにはどうすればよいですか?

これは私のデータベース更新ファイルのセクションです

$height = $_GET['Height'];

$heightInInches = feetToInches($height); //Function call to convert to inches

これは、高さをインチに変換する私の関数です:

function feetToInches( $height) {
preg_match('/((?P<feet>\d+)\')?\s*((?P<inches>\d+)")?/', $feet, $match);
$inches = (($match[feet]*12) + ($match[inches]));

return $inches;

}

毎回0を出力するだけです。

4

3 に答える 3