Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[疑难] 如何增加帖子的调用时间限制

[复制链接]
yifghb 发表于 2008-2-11 19:35:45 | 显示全部楼层 |阅读模式
代码如下:

$focus_file = $focus_link = $focus_text = array();
foreach($focusimg as $imgs) {
        $focus_text[] = $imgs[0];
        $focus_file[] = PUBATTURL.(!$autofocus? $imgsdir : '').$imgs[3];
        $focus_link[] = trim($imgs[2]);
}
$focus_text = implode(' | ', $focus_text);
$focus_file = implode(' | ', $focus_file);
$focus_link = implode(' | ', $focus_link);
$hotimgs = $aggregation['hotimgs'] ? $aggregation['hotimgs'] : array(); //note 热图推荐
foreach($hotimgs as $key => $value) {
        $hotimgs[$key][3] = $imgsdir.$hotimgs[$key][3];
}
$hotimgscount = 6 - count($hotimgs);
if($hotimgscount > 0) { //note 补全热图推荐
        $query = $db->query("SELECT        t.tid, t.subject, atta.attachment FROM {$tablepre}threads t LEFT JOIN {$tablepre}attachments atta ON atta.tid = t.tid WHERE t.attachment = '1' $sqljoin_disableforum AND atta.isimage = '1' AND atta.filesize > '8192' GROUP BY atta.tid ORDER BY t.replies DESC,t.dateline DESC LIMIT 20");
        while($hotimg = $db->fetch_array($query)) {
                $link = './viewthread.php?tid='.$hotimg['tid'];
                if(file_exists($attachmentdir.$hotimg['attachment'])) {
                        $targetimg = $home_autocache.'autothumb_'.random(5).'.jpg';
                        $sourceimg = $attachmentdir.$hotimg['attachment'];
                        makethumb($sourceimg, $targetimg, '134', '95');
                        if(file_exists($targetimg)) {
                                $hotimgs[] = array(cutstr($hotimg['subject'],'16'), '', $link, PUBATTURL.$targetimg);
                        }
                        if(count($hotimgs) == 6) break;
                }
        }
}


如何增加帖子的调用时间限制,比如只想调用一周内的.
tyiweb 发表于 2008-2-12 09:08:21 | 显示全部楼层
提示: 作者被禁止或删除 内容自动屏蔽
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2025-1-12 04:54 , Processed in 0.021108 second(s), 3 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表