⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 updateforum.php

📁 很好的一套PHP树形论坛程序
💻 PHP
字号:
<?php
!function_exists('readover') && exit('Forbidden');

function updateforum($fid,$lastinfo=''){
	global $db;	
	$fm = $db->get_one("SELECT fup,type,password,allowvisit,f_type FROM pw_forums WHERE fid='$fid'");
	if($fm['type'] != 'category'){
		$subtopics = $subrepliess = 0;
		$query = $db->query("SELECT fid FROM pw_forums WHERE fup='$fid'");
		while($subinfo = $db->fetch_array($query)){
			@extract($db->get_one("SELECT COUNT(*) AS subtopic,SUM( replies ) AS subreplies FROM pw_threads WHERE fid='$subinfo[fid]' AND ifcheck='1'"));
			$subtopics   += $subtopic;
			$subrepliess += $subreplies;
			$query2 = $db->query("SELECT fid FROM pw_forums WHERE fup='$subinfo[fid]'");
			while($subinfo2 = $db->fetch_array($query2)){
				@extract($db->get_one("SELECT COUNT(*) AS subtopic,SUM( replies ) AS subreplies FROM pw_threads WHERE fid='$subinfo[fid]' AND ifcheck='1'"));
				$subtopics   += $subtopic;
				$subrepliess += $subreplies;
			}
		}
		$rs       = $db->get_one("SELECT COUNT(*) AS topic,SUM( replies ) AS replies FROM pw_threads WHERE fid='$fid' AND ifcheck='1'");
		$topic    = $rs['topic'];
		$replies  = $rs['replies'];
		$article  = $topic + $replies + $subtopics + $subrepliess;
		if(!$lastinfo){
			$lt = $db->get_one("SELECT tid,author,postdate,lastpost,lastposter,subject FROM pw_threads WHERE fid='$fid' AND ifcheck=1 ORDER BY lastpost DESC LIMIT 0,1");
			if($lt['postdate'] == $lt['lastpost']){
				$subject = addslashes(substrs($lt['subject'],21));
				$author  = addslashes($lt['author']);
			}else{
				$subject = 'Re:'.addslashes(substrs($lt['subject'],21));
				$author  = addslashes($lt['lastposter']);
			}
			$lastinfo = $lt['tid'] ? $subject."\t".$author."\t".$lt['lastpost']."\t"."read.php?tid=$lt[tid]&page=e#a" : '' ;
		}
		$db->update("UPDATE pw_forumdata SET topic='$topic',article='$article',subtopic='$subtopics',lastpost='$lastinfo' WHERE fid='$fid'");
		if($fm['password'] != '' || $fm['allowvisit'] != '' || $fm['f_type'] == 'hidden'){
			$lastinfo = '';
		}
		if($fm['type'] == 'sub'){
			updateforum($fm['fup'],$lastinfo);
		}
	}
}
function updatetop(){
	global $db;
	include(D_P.'data/bbscache/forum_cache.php');
	$db->update("UPDATE pw_forumdata SET top1=0,top2=0");
	$toparr = array();
	$query  = $db->query("SELECT fid,topped FROM pw_threads WHERE topped>0");
	while($rt = $db->fetch_array($query)){
		$toparr[$rt['fid']]['top2'] ++;
		if($rt['topped'] == 2){
			$fup = $forum[$rt['fid']]['fup'];
			if($forum[$fup]['type'] == 'category'){
				$cateid = $forum[$fup]['fid'];
			} elseif($forum[$fup]['type'] == 'forum'){
				$cateid = $forum[$fup]['fup'];
			} else{
				$fup    = $forum[$fup]['fup'];
				$cateid = $forum[$fup]['fup'];
			}
			$start = 0;
			foreach($forum as $key => $value){
				if($start){
					if($value['type'] == 'category'){
						break;
					}
					$key != $rt['fid'] && $toparr[$key]['top1'] ++;
				}
				if($key == $cateid){
					$start = 1;
				}
			}
		} elseif($rt['topped'] == 3){
			foreach($forum as $key => $value){
				if($value['type'] != 'category'){
					$key != $rt['fid'] && $toparr[$key]['top1'] ++;
				}
			}
		}
	}
	foreach($toparr as $key => $value){
		$db->update("UPDATE pw_forumdata SET top1='".(int)$value[top1]."',top2='".(int)$value[top2]."' WHERE fid='$key'");
	}
}
function getattachtype($tid){
	global $db;
	$attach=$db->get_one("SELECT aid FROM pw_posts WHERE tid='$tid' AND aid<>'' ORDER BY postdate DESC LIMIT 1");
	if(!$attach){
		$attach=$db->get_one("SELECT aid FROM pw_tmsgs WHERE tid='$tid'");
	}
	if($attach){
		$attachs= unserialize(stripslashes($attach['aid']));
		$last=@array_pop($attachs);
		$type=$last['type'];
		switch($type){
			case 'img': return 1;
			case 'txt': return 2;
			case 'zip': return 3;
		}
	}
	return 0;
}
function dtchange($user,$wwz,$postn,$money){
	global $db;
	$user=='guest' || $db->update("UPDATE pw_memberdata SET postnum=postnum+'$postn',rvrc=rvrc+'$wwz',money=money+'$money' WHERE uid='$user'");
}
function getfids($fid){
	include(D_P.'data/bbscache/forum_cache.php');
	$fup=$forum[$fid]['fup'];
	if($forum[$fup]['type']=='category'){
		$cateid=$fup;
	} elseif($forum[$fup]['type']=='forum'){
		$cateid=$forum[$fup]['fup'];
	} else{
		$fup=$forum[$fup]['fup'];
		$cateid=$forum[$fup]['fup'];
	}
	$start=0;
	$fids=$extra='';
	foreach($forum as $key => $value){
		if($start){
			if($value['type']!='category'){
				$fids.=$extra.$value['fid'];
				$extra=',';
			} else{
				break;
			}
		}
		if($value['fid']==$cateid){
			$start=1;
		}
	}
	return $fids;
}
?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -