這是我面臨的問題。我正在使用Wordpress,並使用兩個PHP在我的網站上向客戶顯示統計信息,例如網站上的# total of posts
已創建和# of total comments
。 PHP的工作效果很好,並且顯示了當前實時#,但是它們沒有渲染逗號,例如2,700
,其中顯示爲2700
並且對於另一示例100,800
來說,其顯示爲100800
。
誰能告訴我如何修改這2個PHP的實現?
下面是帖子的狀態PHP代碼:
<?php
$postcount = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->posts WHERE post_status = 'publish'");
echo $postcount;
?>
Here is the comments status php:
<?php
$comments_count = wp_count_comments();
echo "" . $comments_count->total_comments . "";
?>
在此先感謝。
-Jay
「,0」太多(=>不必要);它已經是默認參數。 – bwoebi 2013-04-09 20:37:44
正確 - 這不是必需的,只是習慣的強制。 – nickhar 2013-04-09 20:39:53
那個很棒。我如何在第二個PHP中獲得此評論#? – Jay 2013-04-09 20:40:58