每次进入网站或是刷新页面都会随机刷新。
演示地址:http://m.shee.cc:10000/forum-4.htm 源码来源
在thread_list.inc.htm 找到以下代码
<?php if($threadlist) { $have_allowtop = 0; foreach($threadlist as &$_thread) { $_thread['allowtop'] = forum_access_mod($_thread['fid'], $gid, 'allowtop'); if($_thread['allowtop']) $have_allowtop = 1; } } ?>
更新为
<?php if($threadlist) { shuffle($threadlist); $have_allowtop = 0; foreach($threadlist as &$_thread) { $_thread['allowtop'] = forum_access_mod($_thread['fid'], $gid, 'allowtop'); if($_thread['allowtop']) $have_allowtop = 1; } } ?>
其实就是加了一个函数