如何将interger数转换为brazilain价格格式

时间:2015-07-06 11:13:57

标签: gawk

我在产品文件的左侧有如下所示的整数,需要将它们转换为右侧的brazilaian格式。

  • 100 => 100,00
  • 84 => 84,00
  • 1011 => 1.011,00

1 个答案:

答案 0 :(得分:1)

使用number_format() -

echo number_format(100, 2, ',', '.');
echo number_format(84, 2, ',', '.');
echo number_format(1011, 2, ',', '.');

输出 -

100,00
84,00
1.011,00

Docs