帝国CMS按小时发布文章数的统计(详细说明)

按照小时显示更新数量

用sql调用
6小时:<?=$empire->gettotal(select count(*) as total from {$dbtbpre}ecms_表 where newstime>UNIX_TIMESTAMP()-6*3600)?>
12小时:<?=$empire->gettotal(select count(*) as total from {$dbtbpre}ecms_表 where newstime>UNIX_TIMESTAMP()-12*3600)?>
24小时:<?=$empire->gettotal(select count(*) as total from {$dbtbpre}ecms_表 where newstime>UNIX_TIMESTAMP()-24*3600)?>
一个星期:<?=$empire->gettotal(select count(*) as total from {$dbtbpre}ecms_表 where newstime>UNIX_TIMESTAMP()-86400*7)?>
一个月:<?=$empire->gettotal(select count(*) as total from {$dbtbpre}ecms_表 where newstime>UNIX_TIMESTAMP()-86400*30)?>

灵动标签调用
6小时:[e:loop={‘select count(*) as total from [!db.pre!]ecms_表 where newstime>UNIX_TIMESTAMP()-6*3600’,0,24,0}]<?=$bqr[total]?>[/e:loop]
12小时:[e:loop={‘select count(*) as total from [!db.pre!]ecms_表 where newstime>UNIX_TIMESTAMP()-12*3600’,0,24,0}]<?=$bqr[total]?>[/e:loop]
24小时:[e:loop={‘select count(*) as total from [!db.pre!]ecms_表 where newstime>UNIX_TIMESTAMP()-24*3600’,0,24,0}]<?=$bqr[total]?>[/e:loop]
一个星期:[e:loop={‘select count(*) as total from [!db.pre!]ecms_表 where newstime>UNIX_TIMESTAMP()-86400*7’,0,24,0}]<?=$bqr[total]?>[/e:loop]
一个月:[e:loop={‘select count(*) as total from [!db.pre!]ecms_表 where newstime>UNIX_TIMESTAMP()-86400*30’,0,24,0}]<?=$bqr[total]?>[/e:loop]

12*3600即12小时
86400*7即7天
———————————————————————————-
统计昨天发表的文章数量
<?php
$beginYesterday=mktime(0,0,0,date(‘m’),date(‘d’)-1,date(‘Y’));
$endYesterday=mktime(0,0,0,date(‘m’),date(‘d’),date(‘Y’))-1;
?>
[e:loop={select count(*) as total from [!db.pre!]ecms_news where newstime BETWEEN $beginYesterday and $endYesterday,1,24,0}]<?=$bqr[total]?>[/e:loop] 篇 </li>

———————————————————————————-

当前栏目本周更新:
<?=$empire->gettotal(select count(*) as total from {$dbtbpre}ecms_news where classid=’$GLOBALS[navclassid]’ and newstime  >UNIX_TIMESTAMP()-86400*7)?>

注释:按栏目统计一周发布文章数 加 classid=’栏目id’ 
      按当前栏目一周发布文章数 加 classid=’$GLOBALS[navclassid]’ 

//php获取今日开始时间戳和结束时间戳
$beginToday=mktime(0,0,0,date(‘m’),date(‘d’),date(‘Y’));
$endToday=mktime(0,0,0,date(‘m’),date(‘d’)+1,date(‘Y’))-1;

//php获取昨日起始时间戳和结束时间戳 (即:前一天)
$beginYesterday=mktime(0,0,0,date(‘m’),date(‘d’)-1,date(‘Y’));
$endYesterday=mktime(0,0,0,date(‘m’),date(‘d’),date(‘Y’))-1;

//调取这两天(包括今天):(修改昨天)–date(‘d’)-1:这两天 、date(‘d’)-2:这三天、以此类推(注意:$beginYesterday、$endYesterday这两个未改动,还是沿用的昨天的名称)
$beginYesterday=mktime(0,0,0,date(‘m’),date(‘d’)-1,date(‘Y’));
$endYesterday=mktime(0,0,0,date(‘m’),date(‘d’)+1,date(‘Y’))-1;

//调取前两天(修改昨天)–date(‘d’)-2:前两天 、date(‘d’)-3:前三天、以此类推(注意:$beginYesterday、$endYesterday这两个未改动,还是沿用的昨天的名称)
$beginYesterday=mktime(0,0,0,date(‘m’),date(‘d’)-2,date(‘Y’));
$endYesterday=mktime(0,0,0,date(‘m’),date(‘d’),date(‘Y’))-1;

//php获取上周起始时间戳和结束时间戳 
$beginLastweek=mktime(0,0,0,date(‘m’),date(‘d’)-date(‘w’)+1-7,date(‘Y’));
$endLastweek=mktime(23,59,59,date(‘m’),date(‘d’)-date(‘w’)+7-7,date(‘Y’));

//php获取本周起始时间戳和结束时间戳 
$beginThisweek=mktime(0,0 ,0,date(m),date(d)-date(w)+1,date(Y));
$endThisweek=mktime(23,59,59,date(m),date(d)-date(w)+7,date(Y));

//php获取上月起始时间戳和结束时间戳 
$beginLastmonth=mktime(0,0,0,date(m)-1,1,date(Y))
$endLastmonth=mktime(23,59,59,date(m),0,date(Y))

//php获取本月起始时间戳和结束时间戳 
$beginThismonth=mktime(0,0,0,date(‘m’),1,date(‘Y’));
$endThismonth=mktime(23,59,59,date(‘m’),date(‘t’),date(‘Y’))
 

1. 本站所有资源来源于用户上传和网络,如有侵权请邮件联系站长!
2. 分享目的仅供大家学习和交流,您必须在下载后24小时内删除!
3. 不得使用于非法商业用途,不得违反国家法律。否则后果自负!
4. 本站提供的源码、模板、插件等等其他资源,都不包含技术服务请大家谅解!
5. 如有链接无法下载、失效或广告,请联系管理员处理!
6. 本站资源售价只是赞助,收取费用仅维持本站的日常运营所需!
7. 如遇到加密压缩包,请使用WINRAR解压,如遇到无法解压的请联系管理员!
8. 精力有限,不少源码未能详细测试(解密),不能分辨部分源码是病毒还是误报,所以没有进行任何修改,大家使用前请进行甄别
9.本站默认解压密码为:www.sudo1.com
本站提供的一切软件、教程和内容信息仅限用于学习和研究目的。
不得将上述内容用于商业或者非法用途,否则,一切后果请用户自负。
本站信息来自网络收集整理,版权争议与本站无关。您必须在下载后的24个小时之内,从您的电脑或手机中彻底删除上述内容。
如果您喜欢该程序和内容,请支持正版,购买注册,得到更好的正版服务。
我们非常重视版权问题,如有侵权请邮件与我们联系处理。敬请谅解!

云资源网 » 帝国CMS按小时发布文章数的统计(详细说明)

常见问题FAQ

免费下载或者VIP会员专享资源能否直接商用?
本站所有资源版权均属于原作者所有,这里所提供资源均只能用于参考学习用,请勿直接商用。若由于商用引起版权纠纷,一切责任均由使用者承担。更多说明请参考 VIP介绍。
提示下载完但解压或打开不了?
最常见的情况是下载不完整: 可对比下载完压缩包的与网盘上的容量,若小于网盘提示的容量则是这个原因。这是浏览器下载的bug,建议用百度网盘软件或迅雷下载。 若排除这种情况,可在对应资源底部留言,或 联络我们.。
你们有qq群吗怎么加入?
当然有的,如果你是帝国cms、易优cms、和pbootcms系统的爱好者你可以加入我们的QQ千人交流群https://www.sudo1.com/page-qun.html。
  • 会员数(个)
  • 12334资源数(个)
  •        
  • 资源(G)
  •        
  • 今日下载
  • 1406稳定运行(天)

提供最优质的资源集合

立即查看 了解详情