pmcms调用统计更新文章数量的代码
pmcms全部更新数量,代码如下:1、全部更新数量复制代码{cms:rs field="count(1) as tnum" top="1" table="cms_content" where="islock=1"}{$rs[tnum]}{/cms:rs}2、今日更新数量,代码如下: 2、今日更新数量复制代码 {php $date=strtotime(date('Ymd'))}{cms:rs field="count(1) as tnum" top="1" table="cms_content" where="islock=1 and createdate>=$date"}{$rs[tnum]}{/cms:rs}3、本周更新数量,代码如下: 3、本周更新数量复制代