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

📄 dumpuser.php

📁 bmb的论坛
💻 PHP
字号:
<?
/*
 BMForum Plus! Bulletin Board Systems
 Version : Plus!
 
 This is a freeware, but don't change the copyright information.
 A SourceForge Project - GNU Licence project.
 Web Site: http://www.bmforum.com
 Copyright (C) Bluview Technology
*/
include("datafile/config.php");
$thisisout="yes";
require("adminglobal.php");
if($useraccess!="1" || $admgroupdata[16]!="1") {
adminlogin();
}
@set_time_limit(300);


	$t=time();

	$dh=opendir("$id_unique/");

//------閫佸嚭header -------------
	header("Content-disposition: filename=user_$t.bmb");
	header("Content-type: application/octetstream");
	header("Pragma: no-cache");
	header("Expires: 0");

	while (false !== ($userfile = readdir($dh))) {
		if (($userfile!=".") && ($userfile!="..") && !strpos($userfile,".snd") && !strpos($userfile,".frd") && !strpos($userfile,".add") && !strpos($userfile,".rec")) {
			print str_replace("\n%","%",trim(readfromfile("$id_unique/".$userfile)))."\n";
		}
	}
	closedir($dh);

?>

⌨️ 快捷键说明

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