php将1000转换为1,000.00

时间:2010-07-23 00:54:36

标签: php regex

我想知道是否有任何PHP函数将1000的数量转换为1,000.00,10000到10,000.00等等。我可以写一个正则表达式,但我只是想知道是否有任何像php这样的函数的构建。

1 个答案:

答案 0 :(得分:6)

请参阅http://docs.php.net/number_format

for($e=1; $e<9; $e++) {
  echo number_format(pow(10,$e) , 2), "\n";
}

打印

10.00
100.00
1,000.00
10,000.00
100,000.00
1,000,000.00
10,000,000.00
100,000,000.00