我想知道是否有人可以帮我创建一个将毫米变成英尺/英寸的功能。
示例:5280mm将以17英尺/3.7英寸(或17英尺3英寸)的形式返回
我知道一英尺有304.8毫米,这给了我17.322834645669(使用上面相同的例子)但是我不知道如何将它格式化为更清晰的东西。
function getMeasurements($mm) {
return ($mm/304.8);
}
答案 0 :(得分:5)
如果有人想要做同样的事情,这就是我用来计算毫米到英尺/英寸的东西:
function getMeasurements($mm) {
$inches = ceil($mm/25.4);
$feet = floor(($inches/12));
$measurement = $feet."'".($inches%12).'"';
return $measurement;
}
返回的内容如下:17'3“。
答案 1 :(得分:1)
如果您只想格式化数字,请使用number_format