如何在PHP中将int值转换为inch

时间:2016-07-18 04:53:22

标签: php

我只想知道如何根据字段中输入的整数转换英寸。

例如:

$int = $_POST['int']; //value 1

//computation here...

$inch = //formula

//echoing the inch
echo $inch;

1 个答案:

答案 0 :(得分:0)

如果你想从厘米转换,你可以使用这个来源

function cm2inches($cm)
{
     $inches = $cm/2.54;
     $inches = $inches%12;
     return sprintf('%d ins', $inches);
}
echo cm2inches(162);

您将获得结果

3 ins