20

当我想将integer值转换为float(带点的数字)时,我遇到了麻烦。

$a = 7200;
$b = $a/3600;

echo $b; // 2

$b = floatval($b);

echo $b; // 2

但它应该回响2.02.00

我也试过settype,没有成功。而且我只找到“float to int”的帮助/解决方案/问题。

4

4 回答 4

35

更新:

利用

echo sprintf("%.2f", $b); // returns 2.00

利用

echo number_format($b, 2);

例如:

echo number_format(1234, 2); // returns 1,234.00

编辑:

@DavidBaucum 是的, number_format() 返回字符串。

利用

echo sprintf("%.2f", $b);

对于您的问题,请使用

为什么 number_format 不起作用可以通过这个来证明。echo number_format(1234,0) + 1.0 结果为 2

echo sprintf("%.2f",(1234 + 1.0 ) ); // returns 1235.00
于 2013-10-16T17:16:36.007 回答
9

您可以使用number_format()函数来完成此操作。此函数还允许您定义要在小数点后显示的零的数量——您只需要为此使用第二个参数:

$a = 7200;
$b = $a/3600;
$b = floatval($b);
echo number_format($b, 2, '.', '');

或者,如果你想做一行:

echo number_format( (float) $b, 2, '.', '');

输出:

2.00

演示!

于 2013-10-16T17:15:39.810 回答
8

就像是:

<?php
    $a = 7200;
    $b = $a/3600;

    $b = number_format($b,2);

    echo $b; // 2.00
?>

-

number_format(number,decimals,decimalpoint,separator)
于 2013-10-16T17:15:52.663 回答
3

我自己找到了解决方案:

    $b = number_format((float)$b, 1, '.', '');
echo $b; // 2.0

成功了

于 2013-10-16T17:15:46.780 回答