我只想知道如何根据字段中输入的整数转换英寸。
例如:
$int = $_POST['int']; //value 1
//computation here...
$inch = //formula
//echoing the inch
echo $inch;
答案 0 :(得分:0)
如果你想从厘米转换,你可以使用这个来源
function cm2inches($cm)
{
$inches = $cm/2.54;
$inches = $inches%12;
return sprintf('%d ins', $inches);
}
echo cm2inches(162);
您将获得结果
3 ins