1

number_format 默认情况下愚蠢地舍入数字。是否有一种简单的方法可以关闭舍入?我正在使用随机生成的数字,我可以得到类似...

42533 * .003 = 127.599 或
42533 * .03 = 1275.99 或
42533 * .3 = 12759.9

我需要 number_format (或其他东西)以传统的美国格式(用逗号分隔千位)而不是四舍五入来表达结果。

有任何想法吗?

4

3 回答 3

1

number_format的第二个参数是数字中的小数位数。找出这一点的最简单方法可能是将其视为字符串(根据此问题)。传统的美国格式是默认行为,因此您不需要指定剩余的参数。

$num_decimals = strlen(substr(strrchr($number, "."), 1));
$formatted_number = number_format($number, $num_decimals);
于 2013-09-28T20:08:30.730 回答
0

如果有人对此感兴趣,我已经编写了一个小函数来解决这个问题。

归功于上面的 Joel Hinz,我想出了……

function number_format_with_decimals($value, $round_to){
    //$value is the decimal number you want to show with number_format.
    //$round_to is the deicimal place value you want to round to.

    $round_to_decimals = strlen(substr(strrchr($value, "."), $round_to));
    $ans = number_format($value, $round_to);

    return $ans;
}
于 2013-10-26T19:15:06.847 回答
0

我尝试了这些解决方案,但最终我的答案是:

$output=money_format('%!i', $value);

这会给你类似 3,234.90 而不是 3,234 或 3,234.9

于 2015-03-01T23:26:04.377 回答