侯体宗的博客
  • 首页
  • Hyperf版
  • beego仿版
  • 人生(杂谈)
  • 技术
  • 关于我
  • 更多分类
    • 文件下载
    • 文字修仙
    • 中国象棋ai
    • 群聊
    • 九宫格抽奖
    • 拼图
    • 消消乐
    • 相册

discuz 首页四格:最新话题+最新回复+热门话题+精华文章插件

php  /  管理员 发布于 7年前   160

适用版本:  Discuz!5.5 正式版 <br>修改难度:  易 <br>数据库升级:  无

演示网站:http://fhxye.cn/ <br>作者:我只是修改罢了~!!!

更新了一下,感谢[url=profile-uid-141096.html]efrog[/url]:lol 

原贴:http://www.discuz.net/thread-397572-1-5.html <br>

第一步:index.php <br>找到:代码如下:

require_once DISCUZ_ROOT.'./include/forum.func.php';

下面加入:代码如下:

require_once DISCUZ_ROOT.'./include/misc.func.php'; 

找到:代码如下:

$newthreads = round(($timestamp - $lastvisit + 600) / 1000) * 1000; 

下面添加:代码如下:

//---------------hack Meminfo start <br>

if(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "MSIE 6.0")) { 

                $visitor_browser = "Internet Explorer 6.0"; 

        } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "MSIE 5.5")) {                $visitor_browser = "Internet Explorer 5.5";        } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "MSIE 5.0")) {                 $visitor_browser = "Internet Explorer 5.0";         } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "MSIE 4.01")) {                 $visitor_browser = "Internet Explorer 4.01";        } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "NetCaptor")) {                $visitor_browser = "NetCaptor";         } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "Netscape")) { 

                $visitor_browser = "Netscape"; <br>        } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "Lynx")) { 

                $visitor_browser = "Lynx"; <br>        } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "Opera")) { 

                $visitor_browser = "Opera"; <br>        } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "Konqueror")) { 

                $visitor_browser = "Konqueror"; 

        } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "Mozilla")) { 

                $visitor_browser = "Mozilla"; 

        } else { <br>                $visitor_browser = "其它"; 

        } <br>//上面的是浏览器// <br>        if(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "NT 5.1")) { <br>                $visitor_os = "Windows XP";         }elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "NT 5.2")) { 

                $visitor_os = "Windows Server 2003"; 

        }elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "NT 5")) { 

                $visitor_os = "Windows 2000"; 

        } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "4.9")) { 

                $visitor_os = "Windows ME"; 

        } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "NT 4")) { 

                $visitor_os = "Windows NT 4.0"; 

        } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "98")) { 

                $visitor_os = "Windows 98"; 

        } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "95")) { 

                $visitor_os = "Windows 95"; 

        } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "Mac")) { 

                $visitor_os = "Mac"; 

        } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "Linux")) { 

                $visitor_os = "Linux"; 

        } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "Unix")) { 

                $visitor_os = "Unix"; 

        } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "FreeBSD")) { 

                $visitor_os = "FreeBSD"; 

        } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "SunOS")) { 

                $visitor_os = "SunOS"; 

        } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "BeOS")) { 

                $visitor_os = "BeOS"; 

        } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "OS/2")) { 

                $visitor_os = "OS/2"; 

        } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], ";PC")) { 

                $visitor_os = "Macintosh"; 

        }elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "AIX")) { 

                $visitor_os = "AIX"; 

        } else { 

                $visitor_os = "其他"; 

        }         $mem_home = convertip($onlineip, $datadir = "./"); 

//info// <br>$colorarray = array('', 'red', 'orange', 'yellow', 'green', 'cyan', 'blue', 'purple', 'gray'); 

//新贴// 

$hack_cut_str =24; 

//修改标题显示字数 

$hack_cut_strauthor = 9; 

$new_post_threadlist = array(); <br>$nthread = array(); $query = $db->query("SELECT t.*, f.name FROM {$tablepre}threads t, {$tablepre}forums f WHERE t.fid<>'$fid' AND f.fid=t.fid ORDER BY t.dateline DESC LIMIT 0, 8"); while($nthread = $db->fetch_array($query)) { 

        $nthread['forumname'] = $nthread['name']; 

        $nthread['view_subject'] = cutstr($nthread['subject'],$hack_cut_str); 

        $nthread['view_author'] = cutstr($nthread['author'],$hack_cut_strauthor); 

        $nthread['date']= gmdate("$dateformat $timeformat", $nthread['dateline'] + $timeoffset * 3600);         $nthread['lastreplytime']= gmdate("$dateformat $timeformat", $nthread[lastpost] + ($timeoffset * 3600)); 

        if($nthread['highlight']) { 

                $string = sprintf('%02d', $nthread['highlight']); 

                $stylestr = sprintf('%03b', $string[0]); 

                $nthread['highlight'] = 'style="'; 

                $nthread['highlight'] .= $stylestr[0] ? 'font-weight: bold;' : ''; 

                $nthread['highlight'] .= $stylestr[1] ? 'font-style: italic;' : ''; 

                $nthread['highlight'] .= $stylestr[2] ? 'text-decoration: underline;' : ''; 

                $nthread['highlight'] .= $string[1] ? 'color: '.$colorarray[$string[1]] : ''; 

               $nthread['highlight'] .= '"'; 

        } else { 

                $nthread['highlight'] = ''; 

        } 

        $new_post_threadlist[] = $nthread; 

} 

//新贴// 

//新回覆 

$hack_cut_str = 24; 

//修改标题显示字数 

$hack_cut_strauthor = 9; 

$new_reply_threadlist = array(); $rthread = array(); $query = $db->query("SELECT t.*, f.name FROM {$tablepre}threads t, {$tablepre}forums f WHERE t.fid<>'$fid' AND f.fid=t.fid  AND t.closed NOT LIKE 'moved|%' AND t.replies !=0 ORDER BY t.lastpost DESC LIMIT 0, 8"); <br>while($rthread = $db->fetch_array($query)) { 

        $rthread['forumname'] = $rthread['name'];         $rthread['view_subject'] = cutstr($rthread['subject'],$hack_cut_str);         $rthread['view_lastposter'] = cutstr($rthread['lastposter'],$hack_cut_strauthor); $rthread['date']= gmdate("$dateformat $timeformat", $rthread['dateline'] + $timeoffset * 3600);         $rthread['lastreplytime']= gmdate("$dateformat $timeformat", $rthread[lastpost] + ($timeoffset * 3600)); 

        if($rthread['highlight']) {                 $string = sprintf('%02d', $rthread['highlight']); 

                $stylestr = sprintf('%03b', $string[0]); 

                $rthread['highlight'] = 'style="';                 $rthread['highlight'] .= $stylestr[0] ? 'font-weight: bold;' : '';                 $rthread['highlight'] .= $stylestr[1] ? 'font-style: italic;' : '';                 $rthread['highlight'] .= $stylestr[2] ? 'text-decoration: underline;' : '';                 $rthread['highlight'] .= $string[1] ? 'color: '.$colorarray[$string[1]] : '';                 $rthread['highlight'] .= '"'; 

        } else { 

                $rthread['highlight'] = ''; 

        } 

        $new_reply_threadlist[] = $rthread; <br>} <br>//回覆// <br>//热帖 <br>$hack_cut_str = 24; //修改标题显示字数 <br>$hack_cut_strauthor = 9; [color=red]//这个可以选择安装或者不安装//[/color] 

[color=red]

//热贴指定天数//[/color] 

[color=red]$this_time= time();[/color] [color=red]$sort_time = $today - ( 60*60*24*7); 

//7天内 [/color]$new_hot_threadlist = array(); <br>$mthread = array(); 

$query = $db->query("SELECT t.*, f.name FROM {$tablepre}threads t, {$tablepre}forums f WHERE t.fid<>'$fid' AND f.fid=t.fid  AND t.closed NOT LIKE 'moved|%' AND t.replies !=0 [color=red]and t.dateline > $sort_time[/color][b][color=red] [/color][/b]ORDER BY t.views DESC LIMIT 0, 8"); <br>while($mthread = $db->fetch_array($query)) { 

<br>        $mthread['forumname'] = $mthread['name']; 

       $mthread['view_subject'] = cutstr($mthread['subject'],$hack_cut_str); 

       $mthread['view_lastposter'] = cutstr($mthread['lastposter'],$hack_cut_strauthor); <br>$mthread['date']= gmdate("$dateformat $timeformat", $mthread['dateline'] + $timeoffset * 3600);         $mthread['lastreplytime']= gmdate("$dateformat $timeformat", $mthread[lastpost] + ($timeoffset * 3600)); <br>        if($mthread['highlight']) {                 $string = sprintf('%02d', $mthread['highlight']); 

               $stylestr = sprintf('%03b', $string[0]); 

           $mthread['highlight'] = 'style="'; 

               $mthread['highlight'] .= $stylestr[0] ? 'font-weight: bold;' : ''; 

               $mthread['highlight'] .= $stylestr[1] ? 'font-style: italic;' : ''; 

               $mthread['highlight'] .= $stylestr[2] ? 'text-decoration: underline;' : ''; 

               $mthread['highlight'] .= $string[1] ? 'color: '.$colorarray[$string[1]] : ''; 

               $mthread['highlight'] .= '"'; 

       } else { 

               $mthread['highlight'] = ''; 

       } 

   $new_hot_threadlist[] = $mthread; 

 


//热帖// //精华帖 

$hack_cut_str =24; 

//修改标题显示字数 <br>$hack_cut_strauthor = 9; <br>$new_digest_threadlist = array(); $dthread = array(); $query = $db->query("SELECT t.*, f.name FROM {$tablepre}threads t, {$tablepre}forums f WHERE digest>'0' AND t.fid<>'$fid' AND f.fid=t.fid ORDER BY t.dateline DESC LIMIT 0, 8"); 

//修改显示帖子条数 

while($dthread = $db->fetch_array($query)) { 

        $dthread['forumname'] = $dthread['name']; 

        $dthread['view_subject'] = cutstr($dthread['subject'],$hack_cut_str); 

        $dthread['view_author'] = cutstr($dthread['author'],$hack_cut_strauthor); 

        $dthread['date']= gmdate("$dateformat $timeformat", $dthread['dateline'] + $timeoffset * 3600);         $dthread['lastreplytime']= gmdate("$dateformat $timeformat", $dthread[lastpost] + ($timeoffset * 3600)); 

        if($dthread['highlight']) { 

                $string = sprintf('%02d', $dthread['highlight']); 

                $stylestr = sprintf('%03b', $string[0]); 

                $dthread['highlight'] = 'style="'; 

                $dthread['highlight'] .= $stylestr[0] ? 'font-weight: bold;' : ''; 

                $dthread['highlight'] .= $stylestr[1] ? 'font-style: italic;' : ''; 

                $dthread['highlight'] .= $stylestr[2] ? 'text-decoration: underline;' : ''; 

                $dthread['highlight'] .= $string[1] ? 'color: '.$colorarray[$string[1]] : ''; 

                $dthread['highlight'] .= '"'; 

        } else { 

                $dthread['highlight'] = ''; 

        } 

        $new_digest_threadlist[] = $dthread; 

} 


//精华帖// 

如果要修改调用的显示条数,则修改以下代码位置(有4处要修改)代码如下:

$query = $db->query("SELECT t.*, 

f.name FROM {$tablepre}threads t, 

{$tablepre}forums f WHERE t.fid<>'$fid' AND f.fid=t.fid ORDER BY t.dateline DESC LIMIT 0, 

[b][color=red]8[/color][/b]"); 


把8修改成你要的数目就可以了.

2./templates/default/discuz.htm 

找到代码如下:

<!--{if !empty($advlist['text'])}-->      

<div style="clear: both; margin-top: 5px;">      

<div class="spaceborder" style="width: {TABLEWIDTH}">        

<table cellspacing="1" border="0" cellpadding="{TABLESPACE}" width="100%" style="background: {BGBORDER}">$advlist[text]</table>      

<!--{/if}--> 


下面添加:

代码如下:

<div id="code62313" contentScore="3672"><br>

<!--{if !empty($advlist['text'])}--> 

<div style="clear: both; margin-top: 5px;"> 

<div class="spaceborder" style="width: {TABLEWIDTH}">         

<table cellspacing="1" border="0" cellpadding="{TABLESPACE}" width="100%" style="background: {BGBORDER}">$advlist[text]</table> 


<!--{/if}--> 

<!--{if empty($catlist)}--><div class="maintable"><!--{/if}--> <br><table cellspacing="{INNERBORDERWIDTH}" cellpadding="{TABLESPACE}" width="{TABLEWIDTH}" align="center" class="tableborder"> 

        <tr class="header"> 

    <td class="header" width=25% align=center><b>≡最新话题≡</b></td> 

    <td class="header" width=25% align=center><b>≡最新回复≡</b></td> 

    <td class="header" width=25% align=center><b>≡热门话题≡</b></td> 

    <td class="header" width=25% align=center><b>≡精华文章≡</b></td> 

    </tr> 

        <tr> 

        <td class="altbg1"> 

        

<!--{loop $new_post_threadlist $nthread}--> <p><table border=0 width='100%' cellspacing=2><tr><td height=12 width='76%'><FONT color=#FF60c0 face=Wingdings>z</FONT> 

<!--{if $nthread[replies]}-->$nthread[view_subject] 

<!--{else}--> 

$nthread[view_subject]<!--{/if}--> 

</td><td> $nthread[view_author]</td></tr></table> 

<!--{/loop}--> <br></td>       

<td class="altbg1"> 

<!--{loop $new_reply_threadlist $rthread}--> 

<table border=0 width='100%' cellspacing=2><tr><td height=12 width='76%'><FONT color=#FF60c0 face=Wingdings>z</FONT> <br>$rthread[view_subject]</td><td> $rthread[view_lastposter]</td></tr></table> 

<!--{/loop}--> 

</td> 

<td class="altbg1"> 

<!--{loop $new_hot_threadlist $mthread}--> 

<table border=0 width='100%' cellspacing=2><tr><td height=12 width='76%'><FONT color=#FF60c0 face=Wingdings>z</FONT> <br>$mthread[view_subject]</td><td> $mthread[view_lastposter]</td></tr></table> 

<!--{/loop}--> 

</td> 

<td class="altbg1"> 

<!--{loop $new_digest_threadlist $dthread}--> 

<table border=0 width='100%' cellspacing=2><tr><td height=12 width='76%'><FONT color=#FF60c0 face=Wingdings>v</FONT> <br>$dthread[view_subject]</td><td> $dthread[view_author]</td></tr></table> 

<!--{/loop}--> <br></td></tr> <br></table><br> 

 


  • 上一条:
    利用static实现表格的颜色隔行显示的代码
    下一条:
    在普通HTTP上安全地传输密码
  • 昵称:

    邮箱:

    0条评论 (评论内容有缓存机制,请悉知!)
    最新最热
    • 分类目录
    • 人生(杂谈)
    • 技术
    • linux
    • Java
    • php
    • 框架(架构)
    • 前端
    • ThinkPHP
    • 数据库
    • 微信(小程序)
    • Laravel
    • Redis
    • Docker
    • Go
    • swoole
    • Windows
    • Python
    • 苹果(mac/ios)
    • 相关文章
    • Laravel从Accel获得5700万美元A轮融资(0个评论)
    • PHP 8.4 Alpha 1现已发布!(0个评论)
    • 用Time Warden监控PHP中的代码处理时间(0个评论)
    • 在PHP中使用array_pop + yield实现读取超大型目录功能示例(0个评论)
    • Property Hooks RFC在PHP 8.4中越来越接近现实(0个评论)
    • 近期文章
    • 在go中实现一个常用的先进先出的缓存淘汰算法示例代码(0个评论)
    • 在go+gin中使用"github.com/skip2/go-qrcode"实现url转二维码功能(0个评论)
    • 在go语言中使用api.geonames.org接口实现根据国际邮政编码获取地址信息功能(1个评论)
    • 在go语言中使用github.com/signintech/gopdf实现生成pdf分页文件功能(0个评论)
    • gmail发邮件报错:534 5.7.9 Application-specific password required...解决方案(0个评论)
    • 欧盟关于强迫劳动的规定的官方举报渠道及官方举报网站(0个评论)
    • 在go语言中使用github.com/signintech/gopdf实现生成pdf文件功能(0个评论)
    • Laravel从Accel获得5700万美元A轮融资(0个评论)
    • 在go + gin中gorm实现指定搜索/区间搜索分页列表功能接口实例(0个评论)
    • 在go语言中实现IP/CIDR的ip和netmask互转及IP段形式互转及ip是否存在IP/CIDR(0个评论)
    • 近期评论
    • 122 在

      学历:一种延缓就业设计,生活需求下的权衡之选中评论 工作几年后,报名考研了,到现在还没认真学习备考,迷茫中。作为一名北漂互联网打工人..
    • 123 在

      Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..
    • 原梓番博客 在

      在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..
    • 博主 在

      佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 @1111老铁这个不行了,可以看看近期评论的其他文章..
    • 1111 在

      佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 网站不能打开,博主百忙中能否发个APP下载链接,佛跳墙或极光..
    • 2016-10
    • 2016-11
    • 2017-06
    • 2017-07
    • 2017-08
    • 2017-09
    • 2017-11
    • 2017-12
    • 2018-01
    • 2018-02
    • 2018-03
    • 2020-03
    • 2020-04
    • 2020-05
    • 2020-06
    • 2020-07
    • 2020-09
    • 2021-02
    • 2021-03
    • 2021-04
    • 2021-05
    • 2021-06
    • 2021-07
    • 2021-08
    • 2021-09
    • 2021-10
    • 2021-11
    • 2021-12
    • 2022-01
    • 2022-02
    • 2022-05
    • 2022-06
    • 2022-07
    • 2022-08
    • 2022-09
    • 2022-10
    • 2022-11
    • 2022-12
    • 2023-01
    • 2023-02
    • 2023-03
    • 2023-04
    • 2023-05
    • 2023-06
    • 2023-07
    • 2023-08
    • 2023-09
    • 2023-10
    • 2023-11
    • 2023-12
    • 2024-01
    • 2024-02
    • 2024-03
    • 2024-04
    • 2024-05
    • 2024-06
    • 2024-07
    • 2024-09
    Top

    Copyright·© 2019 侯体宗版权所有· 粤ICP备20027696号 PHP交流群

    侯体宗的博客