number_format
愚蠢舍入数字。是否有一种简单的方法可以关闭舍入?我正在使用随机生成的数字,我可以得到类似的东西......
42533 * .003 = 127.599或,
42533 * .03 = 1275.99或,
42533 * .3 = 12759.9
我需要number_format(或其他东西)来表示传统美国格式的结果(逗号分隔数千)和不四舍五入。
有什么想法吗?
答案 0 :(得分:1)
number_format的第二个参数是数字中的小数位数。找到它的最简单方法可能是将其视为一个字符串(根据this question)。传统的美国格式是默认行为,因此您无需指定其余参数。
$num_decimals = strlen(substr(strrchr($number, "."), 1));
$formatted_number = number_format($number, $num_decimals);
答案 1 :(得分: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;
}
答案 2 :(得分:0)
我尝试了这些解决方案,但最终得到的答案是:
$output=money_format('%!i', $value);
这给你3,234.90而不是3,234或3,234.9