嘿,我用这个代码来计数我的 table :

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

这给我的结果像1156563。但是我想看到它像1156563563那样用逗号。我怎样才能做到这一点?

最佳答案

number_format() 应该是您所需要的


<?php
echo number_format(23124154);

//output: 23,124,154

关于php - 如何将逗号放在计数数字中?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2675205/

10-13 05:28