获取当天(24小时)更新文章数量实现方法1、把下面的代码添加到主题的include.php文件function umhtml_postNum(){ global $zbp; $nowtime = time(); $settime = 1*24*60*60; $gettime = $nowtime-$settime; $db = $zbp-...
获取当天(24小时)更新文章数量
实现方法
1、把下面的代码添加到主题的include.php文件
function umhtml_postNum(){ global $zbp; $nowtime = time(); $settime = 1*24*60*60; $gettime = $nowtime-$settime; $db = $zbp->db->sql->get(); $sql = $db->select('zbp_post')->where(array(array('=','log_Status','0'),array('>','log_PostTime',$gettime)))->sql; $array = $zbp->GetListType('Post', $sql); echo count($array) }
2、在要调用显示更新数量的模版位置添加以下调用代码即可
{umhtml_postNum()}