gpt4 book ai didi

php - 格式化数字

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:00:51 25 4
gpt4 key购买 nike

我有一张表格,上面有这样的数字:

19809.1
1982.0
1982.19

它的货币。有没有我可以用来格式化这些数字的函数?

19 809,10
1 982,00
1 982,19

最佳答案

使用 number_format 很容易:

number_format(value, number_of_decimals, "decimal_separator", "thousand_separator")

像这样:

echo number_format(19809.1, 2, ",", " ");

这告诉数字有 2 位小数,逗号 , 作为小数分隔符,空格 作为千位分隔符。输出将是:

19 809,10

其他例子:

echo number_format(19809.1, 0, "", ".");
> 19.809
> no decimal and . as thousand separator

echo number_format(19809.1, 3, ".", ",");
> 19,809.100
> 3 decimals, comma as thousand separator and dot as decimal separator

关于php - 格式化数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22562636/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com