{
    分享网正式开通,我们为大家提供免费资源,欢迎大家踊跃投稿!

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

帝国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

资源均来自第三方,谨慎下载,前往第三方网站下载


爱资源分享网 , 版权所有丨本站资源仅限于学习研究,严禁从事商业或者非法活动!丨本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:帝国CMS自定义列表按时间调用
喜欢 ()分享 (0)