标签: php
我想知道如何在数字中添加逗号。我想将号码5,272,945.31更改为52,72,945.31 是否可以使用php函数?
5,272,945.31
52,72,945.31
我试过这段代码:
number_format($amount,2);
答案 0 :(得分:0)
分配给$amount的值未正确格式化,但number_format不喜欢,,因此在传递给number_format之前将其删除
$amount
number_format
,
number_format(str_replace(',', '', $amount), 2);
示例:https://3v4l.org/dPAEp