在极致CMS中,如何统计昨日的新发布的文章数量?
{php $start = strtotime(date("Y/m/d",time()-24*60*60)); $end = mktime(0, 0, 0, date('m'), date('d'), date('Y')); $sql="addtime >=".$start." and addtime<".$end." and isshow=1 "; $yesterdaynum= M('article')->getCount($sql); /}
然后在对应的地方调用这个变量就可以了。