时间:2021-07-21人气:-
24小时内发布的正常状态的帖子量
//24小时内主题数量
$day_beforet = $_G[timestamp]-86400;
$oneday_threads = DB::result_first("select count(tid) from ".DB::table("forum_post")." where `first`=1 and `invisible`=0 and `dateline`>'$day_beforet' and `dateline`<'$_G[timestamp]'");
复制代码
$_G[timestamp],当前时间戳。
$_G[timestamp]-86400,24小时前的时间戳。
上篇:Discuz!调用 一天内/一周内/一月内/一年内的数据代码
下篇:discuz图片JS预加载代码