Discuz帖子刷新后阅读数进行随机值增加方法
Discuz x3.4帖子浏览数的修改方法: 1、打开文件夹source\module\forum下的forum_viewthread.php,查找 t('forum_thread')->increase
找到:source/module/forum/forum_viewthread.php文件
搜索
function viewthread_updateviews($tableid)
找到
function viewthread_updateviews($tableid) {
global $_G;
if(!$_G['setting']['preventrefresh'] || $_G['cookie']['viewid'] != 'tid_'.$_G['tid']) {
if(!$tableid && $_G['setting']['optimizeviews']) {
if($_G['forum_thread']['addviews']) {
if($_G['forum_thread']['addviews'] < 100) {
C::t('forum_threadaddviews')->update_by_tid($_G['tid']);
} else {
if(!discuz_process::islocked('update_thread_view')) {
$row = C::t('forum_threadaddviews')->fetch($_G['tid']);
C::t('forum_threadaddviews')->update($_G['tid'], array('addviews' => 0));
C::t('forum_thread')->increase($_G['tid'], array('views' => $row['addviews']+1), true);
discuz_process::unlock('update_thread_view');
}
}
} else {
C::t('forum_threadaddviews')->insert(array('tid' => $_G['tid'], 'addviews' => 1), false, true);
}
} else {
C::t('forum_thread')->increase($_G['tid'], array('views' => 1), true, $tableid);
}
}
dsetcookie('viewid', 'tid_'.$_G['tid']);
}
修改为
function viewthread_updateviews($tableid) {
global $_G;
$viewrand = rand(2,10);
if(!$_G['setting']['preventrefresh'] || $_G['cookie']['viewid'] != 'tid_'.$_G['tid']) {
if(!$tableid && $_G['setting']['optimizeviews']) {
if($_G['forum_thread']['addviews']) {
if($_G['forum_thread']['addviews'] < 100) {
C::t('forum_threadaddviews')->update_by_tid($_G['tid']);
} else {
if(!discuz_process::islocked('update_thread_view')) {
$row = C::t('forum_threadaddviews')->fetch($_G['tid']);
C::t('forum_threadaddviews')->update($_G['tid'], array('addviews' => $viewrand));
C::t('forum_thread')->increase($_G['tid'], array('views' => $row['addviews']+$viewrand), true);
discuz_process::unlock('update_thread_view');
}
}
} else {
C::t('forum_threadaddviews')->insert(array('tid' => $_G['tid'], 'addviews' => $viewrand), false, true);
}
} else {
C::t('forum_thread')->increase($_G['tid'], array('views' => $viewrand), true, $tableid);
}
}
dsetcookie('viewid', 'tid_'.$_G['tid']);
}