如何将逗号放入计数中?

时间:2010-04-20 12:53:39

标签: php mysql count

嘿,我用这段代码来计算我的表:

$county = mysql_query("SELECT COUNT(id) from table where type = 'application'");
$county = mysql_result($county, 0);
$applications = ''.$county.'';

这给我的结果像1156563.但我希望看到它像1,156,563逗号。我怎么能这样做?

1 个答案:

答案 0 :(得分:10)

number_format()应该是您需要的

  

如果只给出一个参数,则为number   将被格式化为没有小数,   但每个之间都有一个逗号(“,”)   成千上万的人。

<?php
echo number_format(23124154);

//output: 23,124,154