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

📄 notice.php

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

$timestamp = time();
if(@filemtime(D_P.'data/bbscache/file_lock.txt')<$timestamp-3600*24){
	require_once(R_P."admin/admincp.php");
	$wget=@file("http://www.phpwind.com/src/pw432/free/union727.php?url=$_SERVER[HTTP_HOST]$_SERVER[PHP_SELF]");
	$wget=explode("\t<windtag>\t",implode('',$wget));
	$wget_a=explode("\t",$wget[0]);
	$wget_b=explode("\t",$wget[1]);
	$rt=$db->get_one("SELECT higholnum FROM pw_bbsinfo WHERE id=1");
	foreach($wget_a as $key=>$value){
		$rt['higholnum']<(int)$wget_b[$key] && $wget_a[$key]='';
	}
	$wget=addslashes(implode("\t",$wget_a));
	if($db_union!=$wget){
		$rt=$db->get_one("SELECT db_name FROM pw_config WHERE db_name='db_union'");
		if($rt['db_name']){
			$db->update("UPDATE pw_config SET db_value='$wget' WHERE db_name='db_union'");
		}else{
			$db->update("INSERT INTO pw_config(db_name,db_value) VALUES ('db_union','$wget')");
		}
		updatecache_c();
	}
	writenotice(D_P.'data/bbscache/file_lock.txt','');
}elseif(@filemtime(D_P.'data/bbscache/info.txt')<$timestamp-3600*24){
	$wget=@file('http://www.phpwind.com/src/pw432/free/info.php');
	$wget=@implode('',$wget);
	writenotice(D_P.'data/bbscache/info.txt',$wget);
}elseif(@filemtime(D_P.'data/bbscache/notice.txt')<$timestamp-3600*24){
	require_once(R_P."admin/admincp.php");
	@extract($db->get_one("SELECT totalmember FROM pw_bbsinfo WHERE id=1"));
	@extract($db->get_one("SELECT SUM(topic) AS threads,SUM(article) AS posts FROM pw_forumdata"));
	$wget=@file("http://www.phpwind.com/src/pw432/free/notice.php?url=$_SERVER[HTTP_HOST]$_SERVER[PHP_SELF]&totalmember=$totalmember&threads=$threads&posts=$posts");
	$wget=@implode('',$wget);
	writenotice(D_P.'data/bbscache/notice.txt',$wget);
}elseif(@filemtime(D_P.'data/bbscache/userpay.txt')<$timestamp-3600*24){
	$wget=@file('http://www.phpwind.com/src/pw432/free/userpay2.php');
	$wget=@implode('',$wget);
	if($wget){
		writenotice(D_P.'data/bbscache/userpay.txt',$wget);
	}
}elseif(@filemtime(D_P.'data/bbscache/check_sess.txt')<$timestamp-3600*24){
	$dir=opendir(D_P.'data/bbscache');
	while(false !== ($file = readdir($dir))){
		if(ereg("^sess_",$file) && strpos($file,'.')===false){
			if(filemtime(D_P."data/bbscache/$file")<$timestamp-3600){
				unlink(D_P."data/bbscache/$file");
			}
		}
	}
	writenotice(D_P.'data/bbscache/check_sess.txt','');
}
function readnotice($filename,$method="rb"){
    if($handle=@fopen($filename,$method)){
        flock($handle,LOCK_SH);
        $filedata=@fread($handle,filesize($filename));
        fclose($handle);
    }
    return $filedata;
}
function writenotice($filename,$data,$method="rb+",$iflock=1,$chmod=1){
	$check && strpos($filename,'..')!==false && exit('Forbidden');
	touch($filename);
	$handle=fopen($filename,$method);
	if($iflock){
		flock($handle,LOCK_EX);
	}
	fwrite($handle,$data);
	if($method=="rb+") ftruncate($handle,strlen($data));
	fclose($handle);
	$chmod && @chmod($filename,0777);
}
exit;
?>

⌨️ 快捷键说明

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