您现在的位置是:首页 > 教程 > 帝国CMS教程帝国CMS教程
帝国CMS自定义列表怎么按时间调用
怀蕊2023-05-18 17:55:22帝国CMS教程已有人查阅
导读帝国CMS自定义列表按时间调用,演示代码按8小时、24小时、7天、30天、365天时间调用,大家可以参照代码按实际情况修改3600*72=72小时
帝国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
本文标签:
很赞哦! ()
下一篇:帝国tag按分类调用的方法
相关文章
随机图文
-
帝国cms7.5编辑器整合CKPlayer播放器一个页面多个视频播放
需求:将帝国cms7.5信息编辑器的播放器整第一步:下载ckplayer播放器解压后放置 /e/extend/ckplayer/目录合CKPlayer播放器,支持一个页面多个视频播放, -
帝国CMS利用PHP判断当前页面是否为首页的方法
我们在做模版的时候,习惯性把相同的块做成公共模版变量,方便以后修改。但是往往一个大块里面有那么一两个的样式是不一样的,比如一个客户站的标签,当该标签位于首页的时候 -
帝国CMS栏目列表页调用显示发布的更新时间/日期
帝国CMS栏目列表页调用显示更新时间或者说刷新时间,特别适用一些分类信息网之类的。 -
帝国CMS后台不开能定时刷新的脚本
在你的操作系统,如果是Linux的话,添加以下计划任务。 * * * * * /usr/bin/php /webrootpath/e/tasks/backend_cronjob.php。
留言与评论 (共有 条评论) |