以新聞news模塊為例
全部訪問總量
<?php $ci->db->select_sum('hits'); $query = $ci->db->get(SITE_ID.'_news_hits'); $row = $query->row_array(); echo $row['hits']; ?>
今日訪問總量
<?php $ci->db->select_sum('day_hits'); $query = $ci->db->get(SITE_ID.'_news_hits'); $row = $query->row_array(); echo $row['day_hits']; ?>
本周訪問總量
<?php $ci->db->select_sum('week_hits'); $query = $ci->db->get(SITE_ID.'_news_hits'); $row = $query->row_array(); echo $row['week_hits']; ?>
以上查詢不緩存,會降低網(wǎng)站運行效率
文檔最后更新時間:2017-07-11 08:09:41