我正在尝试将字符串的高度转换为英寸,因此基本上$height = "5' 10\""
需要将字符串转换为 70 英寸。
我将如何从字符串中获取两个 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。