php中没有小数的格式号

时间:2014-12-20 23:11:07

标签: php

我需要打印这样的数字:123 456 789.(用空格分隔)。我使用number_format,但我不知道如何删除小数。

number_format(123456789, 2, ',', ' ')
//output is 123 456 789,00

当我使用它时:

number_format(123456789)
//output is 123,456,789 - it is not correct

更新:我错了。发生了一些事情,它没有奏效。但这是正确的解决方案。谢谢你的帮助。

number_format(123456789, 0, '', ' ') <--- this is correct

1 个答案:

答案 0 :(得分:3)

只需将零传递给第二个参数,即小数位数:

number_format(123456789, 0, '', ' ')