如何在代码之前和之后将脚和英寸添加到小数?

时间:2012-08-23 17:14:49

标签: php

我正在使用下面的代码将米转换为英尺。它就像一个魅力,但我想在小数点后添加英寸部分。

目前的输出

6.2 feet

所需的输出

6 feet 2 inches 

6'2"

以下是代码:

<?php
$meters=$dis[height];
$inches_per_meter = 39.3700787;
$inches_total = round($meters * $inches_per_meter); /* round to integer */
$feet = $inches_total / 12 ; /* assumes division truncates result; if not use floor() */
$inches = $inches_total % 12; /* modulus */
echo "(". round($feet,1) .")"; 
?>

1 个答案:

答案 0 :(得分:8)

小数点后面的数字不是英寸,因为一英尺有12英寸。你想要做的是将厘米转换为英寸,然后将英寸转换为英尺和英寸。我这样做:

<?php

// this is the value you want to convert
$centimetres = $_POST['height']; // 180

// convert centimetres to inches
$inches = round($centimetres/2.54);

// now find the number of feet...
$feet = floor($inches/12);

// ..and then inches
$inches = ($inches%12);

// you now have feet and inches, and can display it however you wish
printf('You are %d feet %d inches tall', $feet, $inches);