$county = mysql_query("SELECT COUNT(id) from table where type = 'application'");
$county = mysql_result($county, 0);
$applications = ''.$county.'';
这给我的结果像1156563.但我希望看到它像1,156,563逗号。我怎么能这样做?
答案 0 :(得分:10)
number_format()
应该是您需要的
如果只给出一个参数,则为number 将被格式化为没有小数, 但每个之间都有一个逗号(“,”) 成千上万的人。
<?php
echo number_format(23124154);
//output: 23,124,154