欢迎来到素材无忧网,按 + 收藏我们
登录 注册 退出 找回密码

帝国CMS自定义列表按时间调用

时间: 2020-09-16 10:48 阅读: 作者:素材无忧网

帝国CMS自定义列表按时间调用

演示代码按8小时、24小时、7天、30天、365天时间调用,大家可以参照代码按实际情况修改3600*72=72小时

8小时内
select count(*) as total from [!db.pre!]ecms_news where unix_timestamp(now())-newstime<3600*720 
select * from [!db.pre!]ecms_news  where unix_timestamp(now())-newstime<3600*720 order by onclick desc

24小时内
select count(*) as total from [!db.pre!]ecms_news where unix_timestamp(now())-newstime<3600*2400
select * from [!db.pre!]ecms_news  where unix_timestamp(now())-newstime<3600*2400 order by onclick desc

7天内
select count(*) as total from [!db.pre!]ecms_news where unix_timestamp(now())-newstime<3600*7*24
select * from [!db.pre!]ecms_news  where unix_timestamp(now())-newstime<3600*7*24 order by onclick desc

一个月
select count(*) as total from [!db.pre!]ecms_news where unix_timestamp(now())-newstime<3600*30*24
select * from [!db.pre!]ecms_news  where unix_timestamp(now())-newstime<3600*30*24 order by onclick desc

一年
select count(*) as total from [!db.pre!]ecms_news where unix_timestamp(now())-newstime<3600*365*24
select * from [!db.pre!]ecms_news  where unix_timestamp(now())-newstime<3600*365*24 order by onclick desc

版权声明: 本站资源均来自互联网或会员发布,如果侵犯了您的权益请与我们联系,我们将在24小时内删除!谢谢!

转载请注明: 帝国CMS自定义列表按时间调用

标签:  
相关文章
模板推荐