让xiuno帖子列表随机显示

aixiu 2025-4-19 103

每次进入网站或是刷新页面都会随机刷新。

演示地址: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        

更新为

<?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;
				}
			}
			?>
PHP        

其实就是加了一个函数


最后于 2025-6-3 被aixiu编辑 ,原因:
这家伙太懒了,什么也没留下。

最新回复 ( 0 )
    • 芝麻地
      2
          
返回
发新帖