推荐一款小巧的PHP在线文件管理系统源码:FileBox
深山的鹿博客为广大网友推荐一款小巧的PHP在线文件管理系统源码:FileBox
关于FileBox
FileBox原名MyFTP,是一个完全由PHP打造的单文件管理系统,它可以帮助站长一键备份自己的网站和数据库、一键搬家,或者当空间服务商没有提供文件解压程序的时候拿它当作文件解压程序使用。FileBox修改自孤雨文件管理器v1.2,FileBox在它的基础上添加了很多Useful的功能,比如:批量删除、操作完后返回原来的目录、文件大小人性化显示等功能。
v1.7.0.1 更新内容:
UPDATE:遗留问题,因HEZI.BE域名已失效,所以删除了所有链接
UPDATE:解决编辑文件时会出现反斜杠消失的BUG
UPDATE:上传文件时增加可上次文件总数的提示
UPDATE:优化界面,解决编辑文件时不能显示正确字体的BUG
备注
已经一年没有更新了,这次更新主要是解决BUG和优化使用了
用户名为filebox, 密码为filebox
一下为程序源码,并附上RAR压缩包下载
<?php
/**
* 程序说明
* @package FileBox
* @author Jooies
* @copyright Copyright (c) 2014-2015
* @since Version 1.7.0.1
*
* 设置说明
* $sitetitle - 标题名称
* $filefolder - 程序目录
* $user - 用户名
* $pass - 密码
* $safe_num - 设置多少次后禁止登陆,为0则不限制,建议为3-5
* $mail - 若有恶意登录,会发邮件到这个邮箱,前提是mail()函数可用!
*/
header('Content-Type: text/html; charset=utf-8');
ignore_user_abort(true);
ob_start();
session_start();
$filefolder = "./";
$sitetitle = 'FileBox';
$user = 'filebox';
$pass = 'filebox';
$safe_num = 5;//设置多少次后禁止登陆,为0则不限制,建议为3-5
$mail = 'i@hezi.be';//若有恶意登录,会发邮件到这个邮箱,前提是mail()函数可用!
$meurl = $_SERVER['PHP_SELF'];
$me = explode('/',$meurl);
$me = end($me);
$os = (DIRECTORY_SEPARATOR=='\\')?"windows":'linux';
if(isset($_REQUEST['op'])){
$op = $_REQUEST['op'];
}else{
$op = 'home';
}
if(isset($_REQUEST['folder'])){
$folder = $_REQUEST['folder'];
}else{
$folder = '';
}
$arr = str_split($folder);
if($arr[count($arr)-1]!=='/'){
$folder .= '/';
}
while (preg_match('/\.\.\//',$folder)) $folder = preg_replace('/\.\.\//','/',$folder);
while (preg_match('/\/\//',$folder)) $folder = preg_replace('/\/\//','/',$folder);
if ($folder == '') {
$folder = $filefolder;
}elseif ($filefolder != '') {
if (!@ereg($filefolder,$folder)) {
$folder = $filefolder;
}
}
$ufolder = $folder;
if(@$_SESSION['error'] > $safe_num && $safe_num !== 0){
printerror('您已经被限制登陆!');
}
/****************************************************************/
/* 用户登录函数 */
/* */
/* 需要浏览器开启Cookies才可使用 */
/****************************************************************/
if (@$_COOKIE['user'] != $user || @$_COOKIE['pass'] != md5($pass)) {
if (@$_REQUEST['user'] == $user && @$_REQUEST['pass'] == $pass) {
setcookie('user',$user,time()+60*60*24*1);
setcookie('pass',md5($pass),time()+60*60*24*1);
} else {
if (@$_REQUEST['user'] == $user || @$_REQUEST['pass']) $er = true;
login(@$er);
}
}
/****************************************************************/
/* function maintop() */
/* */
/* 控制站点的样式和头部内容 */
/* $title -> 顶部标题 $showtop -> 是否显示头部菜单 */
/****************************************************************/
function maintop($title,$showtop = true) {
# 添加全局变量
global $os,$meurl,$me,$sitetitle, $lastsess, $login, $viewing, $iftop, $user, $pass, $password, $debug, $issuper;
echo "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<meta name='robots' content='noindex,follow' />\n<html>\n<head>\n"
."<title>$sitetitle - $title</title>\n"
."</head>\n"
."<body>\n"
."<style>\n*{font-family:'Open Sans','Microsoft Yahei' !important;}.box{border:1px solid #ccc;background-color:#fff;padding:10px;}.title{border:1px solid #ccc;border-bottom:0;font-weight:normal !important;text-align:left !important;width:678px;padding:10px;font-size:13px;color:#666;background-color:#F0F0F0;}.right{float:right;text-align:right !important;}.content{width:700px;margin:auto;overflow:hidden;font-size:13px;}.login_button{margin:0 !important;height:46px;vertical-align:middle;font-size:22px !important;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=hIEfix.png,sizingMethod=crop);}.login_text{vertical-align:middle;padding:7px;width:40%;font-size:22px;border:1px #ccc solid;}input[type=text]:focus,input[type=password]:hover{outline:#aaa solid 1px;background-color:#f8f8f8;}input[type=text]:hover,input[type=password]:hover,input[type=password]:active{outline:#aaa solid 1px;background-color:#f8f8f8;}h2{-webkit-font-smoothing:antialiased;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=hIEfix.png,sizingMethod=crop);text-align:center;margin:16px 0;font-size:48px;font-family:simHei,'Microsoft Yahei' !important;}.tips{overflow:auto;margin:6px 0}span{margin-bottom:8px;}a:visited{color:#333;text-decoration:none;}a:hover{color:#999;text-decoration:none;}a:link{color:#333;text-decoration:none;}a:active{color:#999;text-decoration:none;}textarea{outline:none;font-family:'Yahei Consolas Hybrid',Consolas,Verdana,Tahoma,Arial,Helvetica,'Microsoft Yahei',sans-serif !important;font-size:13px;border:1px solid #ccc;margin-top:-1px;padding:8px;line-height:18px;width:682px;max-width:682px;}input.button{outline:none;border-top:1px solid #ccc;border-right:1px solid #ccc;border-left:1px solid #ccc;background-color:#ffffff;border-bottom:2px solid #ccc;*display:inline;text-align:center !important;color:#333 !important;text-decoration:none !important;padding:3px 10px;font-size:13px;margin-top:10px}input.button:hover{background-color:#f8f8f8;}input.text,select,option,.upload{border:1px solid #ccc;margin:6px 1px;padding:5px;font-size:13px;height:16px;}body{background-color:#fff;margin:0px 0px 10px;}.title{font-weight:bold;FONT-SIZE:12px;text-align:center;}.error{font-size:10pt;color:#AA2222;text-align:left}.menu{margin-top:50px;position:fixed;font-size:13px;padding:5px;}.menu li{list-style-type:square;margin-bottom:8px;}.menu a{text-decoration:none;}.menu a:hover{color:#707070;}.table{background-color:#777;color:#fff;}th{text-align:left;height:40px;line-height:40px;border-bottom:3px solid #dbdbdb;font-size:14px;background-color:#f8f8f8 !important;}table{border:1px solid #ccc;}tr{height:31px;font-size:13px;}tr:hover{background-color:#f5f5f5;}td{border-bottom:1px solid #ededed;}.upload{width:375px;}\n</style>\n";
if(@$_REQUEST['op']!=='home'){
$back = "<li><a href=\"".$meurl."?op=home&folder=".$_SESSION['folder']."\">返回".$_SESSION['folder']."</a></li>\n";
}else{
$back = '';
}
if ($showtop) {//头部菜单内容
echo "<div class=\"menu\">\n"
."<ul><li><a href=\"".$meurl."?op=home\">主页</a></li>\n"
.$back
."<li><a href=\"".$meurl."?op=up\">上传文件</a></li>\n"
."<li><a href=\"".$meurl."?op=cr\">创建文件</a></li>\n"
."<li><a href=\"".$meurl."?op=sqlb\">MySQL备份</a></li>\n"
."<li><a href=\"".$meurl."?op=ftpa\">FTP备份</a></li>\n"
."<li><a href=\"".$meurl."?op=logout\">注销</a></li>\n"
."</ul></div>";
}
echo "<h2>$sitetitle</h2>\n";
echo "<div class='content'>\n";
}
/****************************************************************/
/* function login() */
/* */
/* 登录验证 $user and md5($pass) */
/* 需要浏览器支持Cookie */
/****************************************************************/
function login($er=false) {
global $meurl,$op,$safe_num,$mail;
setcookie("user","",time()-60*60*24*1);
setcookie("pass","",time()-60*60*24*1);
maintop("登录",false);
if ($er) {
if (isset($_SESSION['error'])){
$_SESSION['error']++;
if($_SESSION['error'] > $safe_num && $safe_num !== 0){
@mail($mail,'FileBox文件管理器提醒:文件被恶意登录!','该提醒来自FileBox:<br>登录者IP为:'.$_SERVER['REMOTE_ADDR'],'From: <i@hezi.be>');
echo ('<span class="error">ERROR: 您已经被限制登陆!</span>');
exit;
}
}else{
$_SESSION['error'] = 1;
}
echo "<span class=error>用户名或密码错误!</span><br>\n";
}
echo "<form action=\"".$meurl."?op=".$op."\" method=\"post\">\n"
."<input type=\"text\" name=\"user\" border=\"0\" class=\"login_text\" value=\"".@$user."\" placeholder=\"请输入用户名\">\n"
."<input type=\"password\" name=\"pass\" border=\"0\" class=\"login_text\" value=\"".@$pass."\" placeholder=\"请输入密码\">\n"
."<input type=\"submit\" name=\"submitButtonName\" value=\"ENTER\" border=\"0\" class=\"login_button button\">\n"
."</form>\n";
mainbottom();
}
/****************************************************************/
/* function home() */
/* */
/* Main function that displays contents of folders. */
/****************************************************************/
function home() {
global $os, $meurl ,$folder, $ufolder,$filefolder, $HTTP_HOST;
maintop("主页");
echo "<table border=\"0\" cellpadding=\"2\" cellspacing=\"0\" width=100% class='mytable'><form method='post'>\n";
$content1 = "";
$content2 = "";
$count = "0";
$folder = iconv("UTF-8", "GBK", $folder);
$style = opendir($folder);
$a=1;
$b=1;
if ($folder) {
$_SESSION['folder']=$ufolder;
}
while($stylesheet = readdir($style)) {
$ulfolder = $folder;
$sstylesheet = $stylesheet;
if($os!=='windows'):$qx = "<td>".substr(sprintf('%o',fileperms($ulfolder.$sstylesheet)), -3)."</td>";else:$qx = '';endif;
if ($stylesheet !== "." && $stylesheet !== ".." ) {
if (is_dir($folder.$stylesheet) && is_readable($folder.$stylesheet)) {
$stylesheet = iconv("GBK", "UTF-8", $stylesheet);
$folder = iconv("GBK", "UTF-8", $folder);
$content1[$a] = "<tr width=100% ><td><input name='select_item[d][$stylesheet]' type='checkbox' id='$stylesheet' onclick='One($stylesheet)' class=\"checkbox\" value='".$folder.$stylesheet."' /></td>\n"
."<td><a href=\"".$meurl."?op=home&folder=".$folder.$stylesheet."/\">".$stylesheet."</a></td>\n"
."<td>".Size(dirSize($folder.$stylesheet))."</td>"
."<td><a href=\"".$meurl."?op=home&folder=".htmlspecialchars($folder.$stylesheet)."/\">打开</a></td>\n"
."<td><a href=\"".$meurl."?op=ren&file=".htmlspecialchars($stylesheet)."&folder=$folder\">重命名</a></td>\n"
."<td><a href=\"".$folder.$stylesheet."\" target='_blank'>查看</a></td>\n"
.$qx."</tr>\n";
$a++;
$folder = iconv("UTF-8", "GBK", $folder);
}elseif(!is_dir($folder.$stylesheet) && is_readable($folder.$stylesheet)){
$arr = explode('.',$folder.$stylesheet);
$arr = end($arr);
if($arr == 'zip'||$arr == 'gz'||$arr == 'tar'||$arr == 'gzip'){#判断是否是zip文件
$stylesheet = iconv("GBK", "UTF-8", $stylesheet);
$folder = iconv("GBK", "UTF-8", $folder);
$content2[$b] = "<tr width=100%><td><input name='select_item[f][$stylesheet]' type='checkbox' id='$stylesheet' class=\"checkbox\" value='".$folder.$stylesheet."' /></td>\n"
."<td><a href=\"".$folder.$stylesheet."\" target='_blank'>".$stylesheet."</a></td>\n"
."<td>".Size(filesize($ufolder.$sstylesheet))."</td>"
."<td></td>\n"
."<td><a href=\"".$meurl."?op=ren&file=".htmlspecialchars($stylesheet)."&folder=$folder\">重命名</a></td>\n"
."<td><a href=\"".$meurl."?op=unz&dename=".htmlspecialchars($stylesheet)."&folder=$folder\">提取</a></td>\n"
.$qx."</tr>\n";
$b++;
$folder = iconv("UTF-8", "GBK", $folder);
}elseif($arr == 'gif'||$arr == 'png'||$arr == 'bmp'||$arr == 'png5'||$arr == 'psd'){
$stylesheet = iconv("GBK", "UTF-8", $stylesheet);
$folder = iconv("GBK", "UTF-8", $folder);
$content2[$b] = "<tr width=100%><td><input name='select_item[f][$stylesheet]' type='checkbox' id='$stylesheet' class=\"checkbox\" value='".$folder.$stylesheet."' /></td>\n"
."<td><a href=\"".$folder.$stylesheet."\" target='_blank'>".$stylesheet."</a></td>\n"
."<td>".Size(filesize($ufolder.$sstylesheet))."</td>"
."<td></td>\n"
."<td><a href=\"".$meurl."?op=ren&file=".htmlspecialchars($stylesheet)."&folder=$folder\">重命名</a></td>\n"
."<td><a href=\"".$folder.$stylesheet."\" target='_blank'>查看</a></td>\n"
.$qx."</tr>\n";
$b++;
$folder = iconv("UTF-8", "GBK", $folder);
}else{
$stylesheet = iconv("GBK", "UTF-8", $stylesheet);
$folder = iconv("GBK", "UTF-8", $folder);
$content2[$b] = "<tr width=100%><td><input name='select_item[f][$stylesheet]' type='checkbox' id='$stylesheet' class=\"checkbox\" value='".$folder.$stylesheet."' /></td>\n"
."<td><a href=\"".$folder.$stylesheet."\" target='_blank'>".$stylesheet."</a></td>\n"
."<td>".Size(filesize($ufolder.$sstylesheet))."</td>"
."<td><a href=\"".$meurl."?op=edit&fename=".htmlspecialchars($stylesheet)."&folder=$folder\">编辑</a></td>\n"
."<td><a href=\"".$meurl."?op=ren&file=".htmlspecialchars($stylesheet)."&folder=$folder\">重命名</a></td>\n"
."<td><a href=\"".$folder.$stylesheet."\" target='_blank'>查看</a></td>\n"
.$qx."</tr>\n";
$b++;
$folder = iconv("UTF-8", "GBK", $folder);
}
}
$count++;
}
}
closedir($style);
$lu = explode('/', $ufolder);
array_pop($lu);
$u = '';
echo '<div class="title">';
foreach ($lu as $v) {
$u = $u.$v.'/';
echo '<a href="'.$meurl.'?op=home&folder='.$u.'">'.$v.'</a> ? ';
}
echo "文件\n"
."<span class='right'>共有 " . $count . " 个文件</span></div>"
."<div style=\"position:fixed;bottom:0;margin-left:3px;\"><input type=\"checkbox\" id=\"check\" onclick=\"Check()\"> <input class='button' name='action' type='submit' value='移动' /> <input class='button' name='action' type='submit' value='复制' /> <input class='button' name='action' type='submit' onclick=\"return confirm('点击确认后,选中的文件将作为Backup-time.zip创建!')\" value='压缩' /> <input class='button' name='action' type='submit' onclick=\"return confirm('您真的要删除选中的文件吗?')\" value='删除' /> <input class='button' name='action' type='submit' onclick=\"var t=document.getElementById('chmod').value;return confirm('将这些文件的权限修改为'+t+'?如果是文件夹,将会递归文件夹内所有内容!')\" value='权限' /> <input type=\"text\" class=\"text\" stlye=\"vertical-align:text-top;\" size=\"3\" id=\"chmod\" name=\"chmod\" value=\"0755\"></div>";
if($os!=='windows'):$qx = "<th width=40>权限</th>\n";else:$qx = '';endif;
echo "<tr class='headtable' width=100%>"
."<script>function Check() {
var collid = document.getElementById(\"check\")
var coll = document.getElementsByTagName('input')
if (collid.checked){
for(var i = 0; i < coll.length; i++)
coll[i].checked = true;
}else{
for(var i = 0; i < coll.length; i++)
coll[i].checked = false;
}
}</script>"
."<th width=20></th>\n"
."<th>文件名</th>\n"
."<th width=65>大小</th>\n"
."<th width=45>打开</th>\n"
."<th width=55>重命名</th>\n"
."<th width=40>查看</th>\n"
.$qx
."</tr>";
if($ufolder!=="./"){
$count = substr_count($ufolder,"/");
$last = explode('/', $ufolder);
$i = 1;
$back = ".";
while($i < $count-1){
$back = $back."/".$last[$i];
$i++;
}
if($os=='windows'):$qx="";else:$qx="<td></td>";endif;
echo "<tr width=100%><td></td><td><a href=\"".$meurl."?op=home&folder=".$back."/"."\">上级目录</a></td><td></td><td></td><td></td><td></td>$qx</tr>";
}
for ($a=1; $a<count($content1)+1;$a++) {
if(empty($content1)){
}else{
echo @$content1[$a];
}
}
for ($b=1; $b<count($content2)+1;$b++) {
echo @$content2[$b];
}
echo "</table></form>";
mainbottom();
}
// 计算文件夹大小的函数
function dirSize($directoty){
$dir_size=0;
if($dir_handle=@opendir($directoty))
{
while($filename=readdir($dir_handle)){
$subFile=$directoty.DIRECTORY_SEPARATOR.$filename;
if($filename=='.'||$filename=='..'){
continue;
}elseif (is_dir($subFile))
{
$dir_size+=dirSize($subFile);
}elseif (is_file($subFile)){
$dir_size+=filesize($subFile);
}
}
closedir($dir_handle);
}
return ($dir_size);
}
// 计算文件大小的函数
function Size($size){
if($size < 1024){
$filesize = $size;
}elseif($size > 1024 and $size < 1024*1024){
$count1 = round($size/1024,1);
$filesize = $count1."k";
}elseif($size > 1024*1024 and $size < 1024*1024*1024){
$count1 = round($size/1024/1024,1);
$filesize = $count1."M";
}elseif($size > 1024*1024*1024 and $size < 1024*1024*1024*1024){
$count1 = round($size/1024/1024/1024,1);
$filesize = $count1."G";
}elseif($size > 1024*1024*1024*1024){
$count1 = round($size/1024/1024/1024/1024,1);
$filesize = $count1."T";
}
return $filesize;
}
function curl_get_contents($url)
{
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url); //设置访问的url地址
//curl_setopt($ch,CURLOPT_HEADER,1); //是否显示头部信息
curl_setopt($ch, CURLOPT_TIMEOUT, 60); //设置超时
curl_setopt($ch,CURLOPT_FOLLOWLOCATION,1); //跟踪301
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); //返回结果
$r = curl_exec($ch);
curl_close($ch);
return $r;
}
/****************************************************************/
/* function up() */
/* */
/* First step to Upload. */
/* User enters a file and the submits it to upload() */
/****************************************************************/
function up() {
global $meurl, $folder, $content, $filefolder;
maintop("上传");
echo "<FORM ENCTYPE=\"multipart/form-data\" ACTION=\"".$meurl."?op=upload\" METHOD=\"POST\">\n"
."<div class=\"title\">本地上传</div><div class=\"box\">根据服务器的设置,最大可上传".ini_get('upload_max_filesize')."的文件,且文件总数的最大值为".ini_get('max_file_uploads')."个<br><input type=\"File\" name=\"upfile[]\" multiple size=\"20\">\n"
."<input type=\"text\" name=\"ndir\" value=\"".$_SESSION["folder"]."\" class=\"upload\">\n";
echo $content
."</select></div>"
."<div class='right'><input type=\"checkbox\" name=\"unzip\" id=\"unzip\" value=\"checkbox\" onclick=\"UpCheck()\" checked><label for=\"unzip\"><abbr title='提取(解压)上传的Zip压缩文件'>解压</abbr></labal> "
."<input type=\"checkbox\" name=\"delzip\" id=\"deluzip\"value=\"checkbox\"><label for=\"deluzip\"><abbr title='同时将上传的压缩文件删除'>删除</abbr></labal> "
."<input type=\"submit\" value=\"上传\" class=\"button\"></div><br><br><br>\n"
."<script>function UpCheck(){if(document.getElementById(\"unzip\").checked){document.getElementById(\"deluzip\").disabled=false}else{document.getElementById(\"deluzip\").disabled=true}}</script>"
."</form>\n";
echo "<div class=\"title\">远程下载</div><div class=\"box\">远程下载是什么意思?<br>远程下载是从其他服务器获取文件并直接下载到当前服务器的一种功能。<br>类似于SSH的Wget功能,免去我们下载再手动上传所浪费的时间。<br><br><form action=\"".$meurl."?op=yupload\" method=\"POST\"><input name=\"url\" size=\"65\" type=\"text\" class=\"text\" placeholder=\"请输入文件地址...\"/> <input type=\"text\" class=\"text\" size=\"20\" name=\"ndir\" value=\"".$_SESSION["folder"]."\">"
."</div>"
."<div class='right'><input type=\"checkbox\" name=\"unzip\" id=\"un\" value=\"checkbox\" onclick=\"Check()\" checked><label for=\"un\"><abbr title='提取(解压)上传的Zip压缩文件'>解压</abbr></labal> "
."<input type=\"checkbox\" name=\"delzip\" id=\"del\"value=\"checkbox\"><label for=\"del\"><abbr title='同时将上传的压缩文件删除'>删除</abbr></labal> <input name=\"submit\" value=\"下载\" type=\"submit\" class=\"button\"/></div>\n"
."<script>function Check(){if(document.getElementById(\"un\").checked){document.getElementById(\"del\").disabled=false}else{document.getElementById(\"del\").disabled=true}}</script>"
."</form>";
mainbottom();
}
/****************************************************************/
/* function yupload() */
/* */
/* Second step in wget file. */
/* Saves the file to the disk. */
/* Recieves $upfile from up() as the uploaded file. */
/****************************************************************/
function yupload($url, $folder, $unzip, $delzip) {
global $meurl;
if(empty($folder)){
$folder="./";
}
$nfolder = $folder;
$nurl = $url;
$url = iconv("UTF-8", "GBK", $url);
$folder = iconv("UTF-8", "GBK", $folder);
if($url!==""){
ignore_user_abort(true); // 要求离线也可下载
set_time_limit (24 * 60 * 60); // 设置超时时间
if (!file_exists($folder)){
mkdir($folder, 0755);
}
$newfname = $folder . basename($url); // 取得文件的名称
if(function_exists('curl_init')){
$file = curl_get_contents($url);
file_put_contents($newfname,$file);
}else{
$file = fopen ($url, "rb"); // 远程下载文件,二进制模式
if ($file) { // 如果下载成功
$newf = fopen ($newfname, "wb");
if ($newf) // 如果文件保存成功
while (!feof($file)) { // 判断附件写入是否完整
fwrite($newf, fread($file, 1024 * 8), 1024 * 8); // 没有写完就继续
}
}
if ($file) {
fclose($file); // 关闭远程文件
}
if ($newf) {
fclose($newf); // 关闭本地文件
}
}
maintop("远程上传");
echo "<div class='box'>文件 ".basename($url)." 上传成功<br>\n";
$end = explode('.', basename($url));
if((end($end)=="zip" || end($end)=="tar" || end($end)=="tar.gz" || end($end)=="gzip" || end($end)=="gz") && isset($unzip) && $unzip == "checkbox"){
if(class_exists('ZipArchive')){
$zip = new ZipArchive();
if ($zip->open($folder.basename($url)) === TRUE) {
if($zip->extractTo($folder)){
for($i = 0; $i < $zip->numFiles; $i++) {
echo $zip->getNameIndex($i).'<br>';
}
$zip->close();
echo $dename." 已经解压完成 $nndir<br>";
}else{
echo('无法解压文件:'.$nfolder.$ndename);
}
echo basename($nurl)." 已经被解压到$nfolder<br>";
if(isset($delzip) && $delzip == "checkbox"){
if(unlink($folder.basename($url))){
echo basename($url)." 删除成功<br>";
}else{
echo basename($url)." 删除失败<br>";
}
echo "你可以 <a href=\"".$meurl."?op=home&folder=".$folder."\">访问文件夹</a> 或者 <a href=\"".$meurl."?op=home&folder=".$_SESSION['folder']."\">返回上次浏览的文件夹</a> 或者 <a href=\"".$meurl."?op=up\">继续上传</a>\n";
}
}else{
echo('<span class="error">无法解压文件:'.$nfolder.basename($nurl).'</span><br>');
}
}else{
echo('<span class="error">此服务器上的PHP不支持ZipArchive,无法解压文件!</span><br>');
}
}else{
echo "你可以 <a href=\"".$meurl."?op=home&folder=".$nfolder."\">访问文件夹</a> 或者 <a href=\"".$meurl."?op=edit&fename=".basename($url)."&folder=".$nfolder."\">编辑文件</a> 或者 <a href=\"".$meurl."?op=home&folder=".$_SESSION['folder']."\">返回上次浏览的文件夹</a> 或者 <a href=\"".$meurl."?op=up\">继续上传</a>\n";
}
echo '</div>';
mainbottom();
return true;
}else{
printerror ('文件地址不能为空。');
}
}
/****************************************************************/
/* function upload() */
/* */
/* Second step in upload. */
/* 将文件保存到磁盘中 */
/* Recieves $upfile from up() as the uploaded file. */
/****************************************************************/
function upload($upfile,$ndir,$unzip,$delzip) {
global $meurl, $folder;
if(empty($ndir)){
$ndir="./";
}
$nfolder = $folder;
$nndir = $ndir;
$ndir = iconv("UTF-8", "GBK", $ndir);
if (!$upfile) {
printerror("您没有选择文件!");
exit;
}elseif($upfile) {
maintop("上传");
if (!file_exists($ndir)){
mkdir($ndir, 0755);
}
$i = 1;
echo '<div class="box">';
while (count($upfile['name']) >= $i){
$dir = iconv("UTF-8", "GBK", $nndir.$upfile['name'][$i-1]);
if(@copy($upfile['tmp_name'][$i-1],$dir)) {
echo "文件 ".$nndir.$upfile['name'][$i-1]." 上传成功\n<br>";
$end = explode('.', $upfile['name'][$i-1]);
if((end($end)=="zip" || end($end)=="tar" || end($end)=="tar.gz" || end($end)=="gzip" || end($end)=="gz") && isset($unzip) && $unzip == "checkbox"){
if(class_exists('ZipArchive')){
$zip = new ZipArchive();
if ($zip->open($dir) === TRUE) {
if($zip->extractTo($ndir)){
for($i = 0; $i < $zip->numFiles; $i++) {
echo $zip->getNameIndex($i).'<br>';
}
$zip->close();
}
echo $upfile['name'][$i-1]." 已经被解压到$nndir<br>";
if(isset($delzip) && $delzip == "checkbox"){
if(unlink($dir.$upfile['name'][$i-1])){
echo $upfile['name'][$i-1]." 删除成功<br>";
}else{
echo $upfile['name'][$i-1].("<span class=\"error\">删除失败!</span><br>");
}
}
}else{
echo("<span class=\"error\">无法解压文件:".$nndir.$upfile['name'][$i-1]."</span><br>");
}
}else{
echo("<span class=\"error\">此服务器上的PHP不支持ZipArchive,无法解压文件!</span><br>");
}
}
}else{
echo("<span class=\"error\">文件 ".$upfile['name'][$i-1]." 上传失败</span><br>");
}
$i++;
}
echo "现在您可以 <a href=\"".$meurl."?op=home&folder=".$ndir."\">打开上传的文件夹</a> 或者 <a href=\"".$meurl."?op=home&folder=".$_SESSION['folder']."\">返回上次浏览的文件夹</a> 或者 <a href=\"".$meurl."?op=up\">上传其他文件</a>\n";
echo '</div>';
mainbottom();
}else{
printerror("您没有选择文件!");
}
}
/****************************************************************/
/* function unz() */
/* */
/* First step in unz. */
/* Prompts the user for confirmation. */
/* Recieves $dename and ask for deletion confirmation. */
/****************************************************************/
function unz($dename) {
global $meurl, $folder, $content, $filefolder;
if (!$dename == "") {
if(class_exists('ZipArchive')){
maintop("解压");
echo "<table border=\"0\" cellpadding=\"2\" cellspacing=\"0\">\n"
."<div class='title'>解压 ".$folder.$dename."</div>\n"
."<form ENCTYPE=\"multipart/form-data\" action=\"".$meurl."?op=unzip\"><div class='box'>解压到..."
."<input type=\"text\" name=\"ndir\" class=\"text\" value=\"".$_SESSION['folder']."\"></div>"
."<textarea rows=15 disabled>";
$zip = new ZipArchive();
if ($zip->open($folder.$dename) === TRUE) {
echo 'Archive: '.$folder.$dename.' with '.$zip->numFiles." files\n";
echo "Date Time Size Name\n";
echo "------------ ---------------\n";
for($i = 0; $i < $zip->numFiles; $i++) {
$info = $zip->statIndex($i);
echo date('m-d-y h:m',$info['mtime']);
echo ' '.$info['size'].' ';
echo $zip->getNameIndex($i)."\n";
}
echo "------------ ---------------";
echo "Date Time Size Name\n";
}else{
echo '文件读取失败。';
}
$zip->close();
echo "</textarea>";
echo "<input type=\"hidden\" name=\"op\" value=\"unzip\">\n"
."<input type=\"hidden\" name=\"dename\" value=\"".$dename."\">\n"
."<input type=\"hidden\" name=\"folder\" value=\"".$folder."\">\n"
."<div class='right'><input type=\"checkbox\" name=\"del\" id=\"del\"value=\"del\"><label for=\"del\">删除</label> <input type=\"submit\" value=\"解压\" class=\"button\"></div>\n"
."</table>\n";
mainbottom();
}else{
printerror("此服务器上的PHP不支持ZipArchive,无法解压文件!\n");
}
}else{
home();
}
}
/****************************************************************/
/* function unzip() */
/* */
/* Second step in unzip. */
/****************************************************************/
function unzip($dename,$ndir,$del) {
global $meurl, $folder;
$nndir = $ndir;
$nfolder = $folder;
$ndename = $dename;
$dename = iconv("UTF-8", "GBK", $dename);
$folder = iconv("UTF-8", "GBK", $folder);
$ndir = iconv("UTF-8", "GBK", $ndir);
if (!$dename == "") {
if (!file_exists($ndir)){
mkdir($ndir, 0755);
}
if(class_exists('ZipArchive')){
$zip = new ZipArchive();
if ($zip->open($folder.$dename) === TRUE) {
maintop("解压");
if($zip->extractTo($ndir)){
echo '<div class="box">';
for($i = 0; $i < $zip->numFiles; $i++) {
echo $zip->getNameIndex($i).'<br>';
}
$zip->close();
echo $dename." 已经解压完成 $nndir<br>";
}else{
echo('无法解压文件:'.$nfolder.$ndename);
}
if($del=='del'){
unlink($folder.$dename);
echo $ndename." 已经被删除<br>";
}
echo "<a href=\"".$meurl."?op=home&folder=".$_SESSION['folder']."\">返回上次浏览的文件夹</a></div>\n";
mainbottom();
}else{
printerror('无法解压文件:'.$nfolder.$ndename);
}
}else{
printerror('此服务器上的PHP不支持ZipArchive,无法解压文件!');
}
}else{
home();
}
}
/****************************************************************/
/* function delete() */
/* */
/* Second step in delete. */
/* Deletes the actual file from disk. */
/* Recieves $upfile from up() as the uploaded file. */
/****************************************************************/
function deltree($pathdir)
{
if(is_empty_dir($pathdir))//如果是空的
{
rmdir($pathdir);//直接删除
}
else
{//否则读这个目录,除了.和..外
$d=dir($pathdir);
while($a=$d->read())
{
if(is_file($pathdir.'/'.$a) && ($a!='.') && ($a!='..')){unlink($pathdir.'/'.$a);}
//如果是文件就直接删除
if(is_dir($pathdir.'/'.$a) && ($a!='.') && ($a!='..'))
{//如果是目录
if(!is_empty_dir($pathdir.'/'.$a))//是否为空
{//如果不是,调用自身,不过是原来的路径+他下级的目录名
deltree($pathdir.'/'.$a);
}
if(is_empty_dir($pathdir.'/'.$a))
{//如果是空就直接删除
rmdir($pathdir.'/'.$a);
}
}
}
$d->close();
}
}
function is_empty_dir($pathdir)
{
//判断目录是否为空
$d=opendir($pathdir);
$i=0;
while($a=readdir($d)){
$i++;
}
closedir($d);
if($i>2){return false;}
else return true;
}
/****************************************************************/
/* function edit() */
/* */
/* First step in edit. */
/* Reads the file from disk and displays it to be edited. */
/* Recieves $upfile from up() as the uploaded file. */
/****************************************************************/
function edit($fename) {
global $meurl,$folder;
$file = iconv("UTF-8", "GBK", $folder.$fename);
if (file_exists($folder.$fename)) {
maintop("编辑");
echo "<div class=\"title\">编辑文件 ".$folder.$fename."</div>";
$contents = file_get_contents($file);
if(function_exists('mb_detect_encoding')){
$encode = mb_detect_encoding($contents);
}else{
$encode = 'UTF-8';
}
if($encode!=="UTF-8" && !empty($encode)){
$contents = iconv("UTF-8", $encode."//IGNORE", $contents);
}
echo "<form action=\"".$meurl."?op=save&encode=".$encode."\" method=\"post\">\n"
."<textarea rows=\"24\" name=\"ncontent\">";
echo htmlspecialchars($contents);
echo "</textarea>"
."<br>\n"
."<input type=\"hidden\" name=\"folder\" value=\"".$folder."\">\n"
."<input type=\"hidden\" name=\"fename\" value=\"".$fename."\">\n"
."<input type=\"submit\" value=\"保存\" class=\"right button\">\n"
."</form>\n";
mainbottom();
}else{
home();
}
}
/****************************************************************/
/* function save() */
/* */
/* Second step in edit. */
/* Recieves $ncontent from edit() as the file content. */
/* Recieves $fename from edit() as the file name to modify. */
/****************************************************************/
function save($ncontent, $fename, $encode) {
global $meurl,$folder;
if (!$fename == "") {
maintop("编辑");
$file = iconv("UTF-8", "GBK", $folder.$fename);
$ydata = $ncontent;
if($encode!=="UTF-8" && $encode!=="ASCII"){
$ydata = iconv($encode."//IGNORE", "UTF-8", $ydata);
}
if(file_put_contents($file, $ydata)) {
echo "<div class='box'>文件 <a href=\"".$folder.$fename."\" target=\"_blank\">".$folder.$fename."</a> 保存成功!
"
."请选择 <a href=\"".$meurl."?op=home&folder=".$_SESSION['folder']."\">返回上次浏览的文件夹</a> 或者 <a href=\"".$meurl."?op=edit&fename=".$fename."&folder=".$folder."\">继续编辑</a></div>\n";
$fp = null;
}else{
echo "<span class='error'>文件保存出错!</span>\n"
." <a href=\"".$meurl."?op=home&folder=".$_SESSION['folder']."\">返回上次浏览的文件夹</a>\n";
}
mainbottom();
}else{
home();
}
}
/****************************************************************/
/* function cr() */
/* */
/* First step in create. */
/* Promts the user to a filename and file/directory switch. */
/****************************************************************/
function cr() {
global $meurl, $folder, $content, $filefolder;
maintop("创建");
if (!$content == "") { echo "请输入文件名。
"; }
echo "<form action=\"".$meurl."?op=create\" method=\"post\">\n"
."<div class='title'>创建文件/文件夹</div><div class='box'><label for=\"nfname\">文件名:</label><br><input type=\"text\" size=\"20\" id=\"nfname\" name=\"nfname\" class=\"text\"><br>\n"
."<label for=\"ndir\">目标目录:</label><br><input type=\"text\" class=\"text\" id=\"ndir\" name=\"ndir\" value=\"".$_SESSION['folder']."\">";
echo "<br><select name=\"isfolder\" style=\"height:30px;padding:3px;\"><option value=\"1\" checked>文件夹</option>\n"
."<option value=\"0\" checked>文件</option></select>\n"
."</div><input type=\"hidden\" name=\"folder\" value=\"$folder\">\n"
."<input type=\"submit\" value=\"创建\" class=\"right button\">\n"
."</form>\n";
mainbottom();
}
/****************************************************************/
/* function create() */
/* */
/* Second step in create. */
/* Creates the file/directoy on disk. */
/* Recieves $nfname from cr() as the filename. */
/* Recieves $infolder from cr() to determine file trpe. */
/****************************************************************/
function create($nfname, $isfolder, $ndir) {
global $meurl, $folder;
if (!$nfname == "") {
maintop("创建");
echo '<div class="box">';
$ndir = iconv("UTF-8", "GBK", $ndir);
$nfname = iconv("UTF-8", "GBK", $nfname);
if ($isfolder == 1) {
if(@mkdir($ndir."/".$nfname, 0755)) {
$ndir = iconv("GBK", "UTF-8", $ndir);
$nfname = iconv("GBK", "UTF-8", $nfname);
echo "您的目录<a href=\"".$meurl."?op=home&folder=./".$nfname."/\">".$ndir.$nfname."/</a> 已经成功被创建。
"
."请选择 <a href=\"".$meurl."?op=home&folder=".$ndir.$nfname."/\">打开文件夹</a> 或者 <a href=\"".$meurl."?op=home&folder=".$_SESSION['folder']."\">返回上次浏览的文件夹</a>\n";
}else{
$ndir = iconv("GBK", "UTF-8", $ndir);
$nfname = iconv("GBK", "UTF-8", $nfname);
echo "<span class='error'>您的目录".$ndir."".$nfname." 不能被创建。请检查您的目录权限是否已经被设置为可写 或者 目录是否已经存在</span> <a href=\"".$meurl."?op=home&folder=".$_SESSION['folder']."\">返回上次浏览的文件夹</a>\n";
}
}else{
if(@fopen($ndir."/".$nfname, "w")) {
$ndir = iconv("GBK", "UTF-8", $ndir);
$nfname = iconv("GBK", "UTF-8", $nfname);
echo "您的文件, <a href=\"".$meurl."?op=viewframe&file=".$nfname."&folder=$ndir\">".$ndir.$nfname."</a> 已经成功被创建
"
."<br><a href=\"".$meurl."?op=edit&fename=".$nfname."&folder=".$ndir."\">编辑文件</a> 或者是 <a href=\"".$meurl."?op=home&folder=".$_SESSION['folder']."\">返回上次浏览的文件夹</a>\n";
}else{
$ndir = iconv("GBK", "UTF-8", $ndir);
$nfname = iconv("GBK", "UTF-8", $nfname);
echo "<span class='error'>您的文件 ".$ndir.$nfname." 不能被创建。请检查您的目录权限是否已经被设置为可写 或者 文件是否已经存在</span> <a onclick=\"history.go(-1);\" style=\"cursor:pointer\">返回上一步</a>\n";
}
}
echo "</box>";
mainbottom();
}else{
cr();
}
}
/****************************************************************/
/* function ren() */
/* */
/* First step in rename. */
/* Promts the user for new filename. */
/* Globals $file and $folder for filename. */
/****************************************************************/
function ren($file) {
global $meurl,$folder,$ufolder;
$ufile = $file;
if (!$file == "") {
maintop("重命名");
echo "<form action=\"".$meurl."?op=rename\" method=\"post\">\n"
."<div class=\"title\">重命名 ".$ufolder.$ufile.'</div>';
echo "<div class=\"box\"><input type=\"hidden\" name=\"rename\" value=\"".$ufile."\">\n"
."<input type=\"hidden\" name=\"folder\" value=\"".$ufolder."\">\n"
."新文件名:<input class=\"text\" type=\"text\" size=\"20\" name=\"nrename\" value=\"$ufile\"></div>\n"
."<input type=\"Submit\" value=\"重命名\" class=\"right button\"></form>\n";
mainbottom();
}else{
home();
}
}
/****************************************************************/
/* function renam() */
/* */
/* Second step in rename. */
/* Rename the specified file. */
/* Recieves $rename from ren() as the old filename. */
/* Recieves $nrename from ren() as the new filename. */
/****************************************************************/
function renam($rename, $nrename, $folder) {
global $meurl,$folder;
if (!$rename == "") {
$loc1 = iconv("UTF-8", "GBK", "$folder".$rename);
$loc2 = iconv("UTF-8", "GBK", "$folder".$nrename);
if(rename($loc1,$loc2)) {
maintop("重命名");
echo "<div class='box'>文件 ".$folder.$rename." 已被重命名成 ".$folder.$nrename."</a>\n"
." <a href=\"".$meurl."?op=home&folder=".$_SESSION['folder']."\">返回上次浏览的文件夹</a></div>\n";
mainbottom();
}else{
printerror("重命名出错!");
}
}else{
home();
}
}
/****************************************************************/
/* function movall */
/* */
/* 批量移动 2014-4-12 by jooies */
/****************************************************************/
function movall($file, $ndir, $folder) {
global $meurl,$folder;
if (!$file == "") {
maintop("批量移动");
echo "<div class='box'>";
$arr = str_split($ndir);
if($arr[count($arr)-1]!=='/'){
$ndir .= '/';
}
$nndir = $ndir;
$nfolder = $folder;
$file = iconv("UTF-8", "GBK",$file);
$ndir = iconv("UTF-8", "GBK",$ndir);
$folder = iconv("UTF-8", "GBK",$folder);
if (!file_exists($ndir)){
mkdir($ndir, 0755);
}
$file = explode(',',$file);
foreach ($file as $v) {
if (file_exists($ndir.$v)){
@unlink($ndir.$v);
if (@rename($folder.$v, $ndir.$v)){
$v = iconv("GBK", "UTF-8",$v);
echo $nndir.$v." 文件被 ".$nfolder.$v." 替换<br>";
}else{
$v = iconv("GBK", "UTF-8",$v);
echo "<span class='error'>无法移动 ".$nfolder.$v.',请检查文件权限</span><br>';
}
}elseif (@rename($folder.$v, $ndir.$v)){
$v = iconv("GBK", "UTF-8",$v);
echo $nfolder.$v." 已经成功移动到 ".$nndir.$v.'<br>';
}else{
$v = iconv("GBK", "UTF-8",$v);
echo "<span class='error'>无法移动 ".$nfolder.$v.',请检查文件权限</span><br>';
}
}
echo "你可以 <a href=\"".$meurl."?op=home&folder=".$nndir."\">前往文件夹查看文件</a> 或者 <a href=\"".$meurl."?op=home&folder=".$_SESSION['folder']."\">返回上次浏览的文件夹</a>\n";
echo "</div>";
mainbottom();
}else{
home();
}
}
/****************************************************************/
/* function tocopy */
/* */
/* 批量复制 2014-4-19 by jooies */
/****************************************************************/
function tocopy($file, $ndir, $folder) {
global $meurl,$folder;
if (!$file == "") {
maintop("复制");
echo "<div class='box'>";
$nndir = $ndir;
$nfolder = $folder;
$file = iconv("UTF-8", "GBK",$file);
$ndir = iconv("UTF-8", "GBK",$ndir);
$folder = iconv("UTF-8", "GBK",$folder);
if (!file_exists($ndir)){
mkdir($ndir, 0755);
}
$file = explode(',',$file);
foreach ($file as $v) {
if (file_exists($ndir.$v)){
@unlink($ndir.$v);
if (@copy($folder.$v, $ndir.$v)){
$v = iconv("GBK", "UTF-8",$v);
echo $nndir.$v." 文件被 ".$nfolder.$v." 替换<br>";
}else{
$v = iconv("GBK", "UTF-8",$v);
echo "<span class='error'>无法复制 ".$nfolder.$v.',请检查文件权限</span><br>';
}
}elseif (@copy($folder.$v, $ndir.$v)){
$v = iconv("GBK", "UTF-8",$v);
echo $nfolder.$v." 已经成功复制到 ".$nndir.$v.'<br>';
}else{
$v = iconv("GBK", "UTF-8",$v);
echo "<span class='error'>无法复制 ".$nfolder.$v.',请检查文件权限</span><br>';
}
}
echo "你可以 <a href=\"".$meurl."?op=home&folder=".$nndir."\">前往文件夹查看文件</a> 或者 <a href=\"".$meurl."?op=home&folder=".$_SESSION['folder']."\">返回上次浏览的文件夹</a>\n";
echo "</div>";
mainbottom();
}else{
home();
}
}
/****************************************************************/
/* function logout() */
/* */
/* Logs the user out and kills cookies */
/****************************************************************/
function logout() {
global $meurl,$login;
setcookie("user","",time()-60*60*24*1);
setcookie("pass","",time()-60*60*24*1);
maintop("注销",false);
echo "<div class='box'>注销成功!<br>"
."<a href=".$meurl."?op=home>点击这里重新登录</a></dvi>";
mainbottom();
}
/****************************************************************/
/* function mainbottom() */
/* */
/* 页面底部的版权声明 */
/****************************************************************/
function mainbottom() {
echo "</div><div style='text-align:center;font-size:13px;color:#999 !important;margin-top:5px;margin-bottom:45px'>"
."FileBox Version 1.7.0.1</div></body>\n"
."</html>\n";
exit;
}
/****************************************************************/
/* function sqlb() */
/* */
/* First step to backup sql. */
/****************************************************************/
function sqlb() {
global $meurl;
maintop("数据库备份");
echo "<div class=\"title\"><span>这将进行数据库导出并压缩成mysql.zip的动作! 如存在该文件,该文件将被覆盖!</span></div><div class=\"box\"><form action=\"".$meurl."?op=sqlbackup\" method=\"POST\">\n<label for=\"ip\">数据库地址: </label><input type=\"text\" id=\"ip\" name=\"ip\" size=\"30\" class=\"text\"/><br><label for=\"sql\">数据库名称: </label><input type=\"text\" id=\"sql\" name=\"sql\" size=\"30\" class=\"text\"/><br><label for=\"username\">数据库用户: </label><input type=\"text\" id=\"username\" name=\"username\" size=\"30\" class=\"text\"/><br><label for=\"password\">数据库密码: </label><input type=\"password\" id=\"password\" name=\"password\" size=\"30\" class=\"text\"/><br></div><input name=\"submit\" class=\"right button\" value=\"备份\" type=\"submit\" /></form>\n";
mainbottom();
}
/****************************************************************/
/* function sqlbackup() */
/* */
/* Second step in backup sql. */
/****************************************************************/
function sqlbackup($ip,$sql,$username,$password) {
global $meurl;
if(class_exists('ZipArchive')){
maintop("MySQL备份");
$database=$sql;//数据库名
$options=array(
'hostname' => $ip,//ip地址
'charset' => 'utf8',//编码
'filename' => $database.'.sql',//文件名
'username' => $username,
'password' => $password
);
mysql_connect($options['hostname'],$options['username'],$options['password'])or die("不能连接数据库!");
mysql_select_db($database) or die("数据库名称错误!");
mysql_query("SET NAMES '{$options['charset']}'");
$tables = list_tables($database);
$filename = sprintf($options['filename'],$database);
$fp = fopen($filename, 'w');
foreach ($tables as $table) {
dump_table($table, $fp);
}
fclose($fp);
//压缩sql文件
if (file_exists('mysql.zip')) {
unlink('mysql.zip');
}
$file_name=$options['filename'];
$zip = new ZipArchive;
$res = $zip->open('mysql.zip', ZipArchive::CREATE);
if ($res === TRUE) {
$zip->addfile($file_name);
$zip->close();
//删除服务器上的sql文件
unlink($file_name);
echo '<div class="box">数据库导出并压缩完成!'
." <a href=\"".$meurl."?op=home&folder=".$_SESSION['folder']."\">返回上次浏览的文件夹</a></div>\n";
}else{
printerror('无法压缩文件!');
}
exit;
mainbottom();
}else{
printerror('此服务器上的PHP不支持ZipArchive,无法压缩文件!');
}
}
function list_tables($database)
{
$rs = mysql_query("SHOW TABLES FROM $database");
$tables = array();
while ($row = mysql_fetch_row($rs)) {
$tables[] = $row[0];
}
mysql_free_result($rs);
return $tables;
}
//导出数据库
function dump_table($table, $fp = null)
{
$need_close = false;
if (is_null($fp)) {
$fp = fopen($table . '.sql', 'w');
$need_close = true;
}
$a=mysql_query("show create table `{$table}`");
$row=mysql_fetch_assoc($a);fwrite($fp,$row['Create Table'].';');//导出表结构
$rs = mysql_query("SELECT * FROM `{$table}`");
while ($row = mysql_fetch_row($rs)) {
fwrite($fp, get_insert_sql($table, $row));
}
mysql_free_result($rs);
if ($need_close) {
fclose($fp);
}
}
//导出表数据
function get_insert_sql($table, $row)
{
$sql = "INSERT INTO `{$table}` VALUES (";
$values = array();
foreach ($row as $value) {
$values[] = "'" . mysql_real_escape_string($value) . "'";
}
$sql .= implode(', ', $values) . ");";
return $sql;
}
/****************************************************************/
/* function ftpa() */
/* */
/* First step to backup sql. */
/****************************************************************/
function ftpa() {
global $meurl;
maintop("FTP备份");
echo "<div class=\"title\">这将把文件远程上传到其他ftp!如目录存在该文件,文件将被覆盖!</div>\n<form action=\"".$meurl."?op=ftpall\" method=\"POST\"><div class=\"box\"><label for=\"ftpip\">FTP 地址:</label><input type=\"text\" id=\"ftpip\" name=\"ftpip\" size=\"30\" class=\"text\" value=\"127.0.0.1:21\"/><br><label for=\"ftpuser\">FTP 用户:</label><input type=\"text\" id=\"ftpuser\" name=\"ftpuser\" size=\"30\" class=\"text\"/><br><label for=\"ftppass\">FTP 密码:</label><input type=\"password\" id=\"ftppass\" name=\"ftppass\" size=\"30\" class=\"text\"/><br><label type=\"text\" for=\"goto\">上传目录:</label><input type=\"text\" id=\"goto\" name=\"goto\" size=\"30\" class=\"text\" value=\"./htdocs/\"/><br><label for=\"ftpfile\">上传文件:</label><input type=\"text\" id=\"ftpfile\" name=\"ftpfile\" size=\"30\" class=\"text\" value=\"allbackup.zip\"/></div><div class=\"right\"><label for=\"del\"><input type=\"checkbox\" name=\"del\" id=\"del\"value=\"checkbox\"><abbr title='FTP上传后删除本地文件'>删除</abbr></label> <input name=\"submit\" class=\"button\" value=\"远程上传\" type=\"submit\" /></div></form>\n";
mainbottom();
}
/****************************************************************/
/* function ftpall() */
/* */
/* Second step in backup sql. */
/****************************************************************/
function ftpall($ftpip,$ftpuser,$ftppass,$ftpdir,$ftpfile,$del) {
global $meurl;
$ftpfile = iconv("UTF-8", "GBK", $ftpfile);
maintop("FTP上传");
echo "<div class='box'>";
$ftpip=explode(':', $ftpip);
$ftp_server=$ftpip['0'];//服务器
$ftp_user_name=$ftpuser;//用户名
$ftp_user_pass=$ftppass;//密码
if(empty($ftpip['1'])){
$ftp_port='21';
}else{
$ftp_port=$ftpip['1'];//端口
}
$ftp_put_dir=$ftpdir;//上传目录
$ffile=$ftpfile;//上传文件
$ftp_conn_id = ftp_connect($ftp_server,$ftp_port);
$ftp_login_result = ftp_login($ftp_conn_id, $ftp_user_name, $ftp_user_pass);
if((!$ftp_conn_id) || (!$ftp_login_result)) {
echo "连接到ftp服务器失败";
exit;
}else{
ftp_pasv ($ftp_conn_id,true); //返回一下模式,这句很奇怪,有些ftp服务器一定需要执行这句
ftp_chdir($ftp_conn_id, $ftp_put_dir);
$ffile=explode(',', $ffile);
foreach ($ffile as $v) {
$ftp_upload = ftp_put($ftp_conn_id,$v,$v, FTP_BINARY);
if ($del == 'del') {
unlink('./'.$v);
}
}
ftp_close($ftp_conn_id); //断开
}
$ftpfile = iconv("GBK", "UTF-8", $ftpfile);
echo "文件 ".$ftpfile." 上传成功\n"
." <a href=\"".$meurl."?op=home&folder=".$_SESSION['folder']."\">返回上次浏览的文件夹</a>\n";
echo "</div>";
mainbottom();
}
/****************************************************************/
/* function printerror() */
/* */
/* 用于显示错误信息的函数 */
/* $error为显示的提示 */
/****************************************************************/
function printerror($error) {
maintop("错误");
echo "<div class='title'>操作时发生错误</div><div class='box'><span class='error'>\n".$error."\n</span> <a onclick=\"history.go(-1);\" style=\"cursor:pointer\">返回上一步</a></div>";
mainbottom();
}
/****************************************************************/
/* function deleteall() */
/* */
/* 2014-3-9 Add by Jooies */
/* 实现文件的批量删除功能 */
/****************************************************************/
function deleteall($dename) {
if (!$dename == "") {
$udename = $dename;
$dename = iconv("UTF-8", "GBK",$dename);
if (is_dir($dename)) {
if(is_empty_dir($dename)){
rmdir($dename);
echo "<span>".$udename." 已经被删除</span><br>";
}else{
deltree($dename);
rmdir($dename);
echo "<span>".$udename." 已经被删除</span><br>";
}
}else{
if(@unlink($dename)) {
echo '<span>'.$udename." 已经被删除</span><br>";
}else{
echo("<span class='error'>无法删除文件:$udename ,可能是文件不存在!</span><br>");
}
}
}
}
if(@$_POST['action']=='删除'){
if(isset($_POST['select_item'])){
maintop("删除");
echo '<div class="box">';
if(@$_POST['select_item']['d']){
foreach($_POST['select_item']['d'] as $val){
deleteall($val);
}
}
if(@$_POST['select_item']['f']){
foreach($_POST['select_item']['f'] as $val){
if(deleteall($val)){}
}
}
echo "<a href=\"".$meurl."?op=home&folder=".$_SESSION['folder']."\">返回上次浏览的文件夹</a>\n";
echo '</div>';
mainbottom();
}else{
printerror("您没有选择文件");
}
}
if(@$_POST['action']=='移动'){
if(isset($_POST['select_item'])){
maintop("批量移动");
$file = '';
if(@$_POST['select_item']['d']){
foreach($_POST['select_item']['d'] as $key => $val){
$file = $file.$key.',';
}
}
if(@$_POST['select_item']['f']){
foreach($_POST['select_item']['f'] as $key => $val){
$file = $file.$key.',';
}
}
$file = substr($file,0,-1);
echo "<form action=\"".$meurl."?op=movall\" method=\"post\">";
echo '<div class="title">移动文件</div><div class="box"><input type="hidden" name="file" value="'.$file.'"><input type="hidden" name="folder" value="'.$_SESSION['folder'].'">您将把下列文件移动到:'
."<input type=\"text\" class=\"text\" name=\"ndir\" value=\"".$_SESSION['folder']."\">\n"
."<div class='tips'>".$file."</div>";
echo "</div><input type=\"submit\" value=\"移动\" border=\"0\" class=\"right button\">\n";
mainbottom();
}else{
printerror("您没有选择文件");
}
}
if(@$_POST['action']=='复制'){
if(isset($_POST['select_item'])){
maintop("复制");
$file = '';
if(@$_POST['select_item']['d']){
foreach($_POST['select_item']['d'] as $key => $val){
$file = $file.$key.',';
}
}
if(@$_POST['select_item']['f']){
foreach($_POST['select_item']['f'] as $key => $val){
$file = $file.$key.',';
}
}
$file = substr($file,0,-1);
echo "<form action=\"".$meurl."?op=copy\" method=\"post\">";
echo '<div class="title">复制文件</div><div class="box"><input type="hidden" name="file" value="'.$file.'"><input type="hidden" name="folder" value="'.$_SESSION['folder'].'">您将把下列文件复制到:'
."<input type=\"text\" class=\"text\" name=\"ndir\" value=\"".$_SESSION['folder']."\">\n"
."<div class='tips'>".$file."</div>";
echo "</div><input type=\"submit\" value=\"复制\" border=\"0\" class=\"right button\">\n";
mainbottom();
}else{
printerror("您没有选择文件");
}
}
if(@$_POST['action']=='压缩'){
if(isset($_POST['select_item'])){
if(class_exists('ZipArchive')){
maintop("目录压缩");
echo '<div class="box">';
class Zipper extends ZipArchive {
public function addDir($path) {
if(@$_POST['select_item']['d']){
foreach($_POST['select_item']['d'] as $key => $val){
$val = substr($val,2);
$val = iconv("UTF-8", "GBK",$val);
$this->addDir2($val);
}
}
if(@$_POST['select_item']['f']){
foreach($_POST['select_item']['f'] as $key => $val){
$val = substr($val,2);
echo $val.'<br>';
$this->addFile($val);
}
$this->deleteName('./');
}
}
public function addDir2($path) {
$nval = iconv("GBK", "UTF-8",$path);
echo $nval.'<br>';
$this->addEmptyDir($path);
$dr = opendir($path);
$i=0;
while (($file = readdir($dr)) !== false)
{
if($file!=='.' && $file!=='..'){
$nodes[$i] = $path.'/'.$file;
$i++;
}
}
closedir($dr);
foreach ($nodes as $node) {
$nnode = iconv("GBK", "UTF-8",$node);
echo $nnode . '<br>';
if (is_dir($node)) {
$this->addDir2($node);
}elseif(is_file($node)){
$this->addFile($node);
}
}
}
}
$zip = new Zipper;
$time = date('D-d-M-g-h-s',$_SERVER['REQUEST_TIME']);
$res = $zip->open($_SESSION['folder'].'Backup-'.$time.'.zip', ZipArchive::CREATE);
if ($res === TRUE) {
$f = substr($_SESSION['folder'], 0, -1);
$zip->addDir($f);
$zip->close();
echo "压缩完成,文件保存为Backup-".$time.".zip<br>你可以 <a href=\"".$meurl."?op=home&folder=".$_SESSION['folder']."\">查看文件夹</a> 或者 <a href=\"".$meurl."?op=home\">返回上次浏览的文件夹</a></div>\n";
}else{
echo '<span class="error">压缩失败!</span>'
."</div>\n";
}
mainbottom();
}else{
printerror('此服务器上的PHP不支持ZipArchive,无法压缩文件!');
}
}else{
printerror("您没有选择文件");
}
}
if($os!=='windows'):
if(@$_POST['action']=='权限'){
if(isset($_POST['select_item'])){
maintop("修改权限");
echo '<div class="box">';
$chmod = octdec($_REQUEST['chmod']);
function ChmodMine($file, $chmod)
{
$nfile = $file;
$file = iconv("UTF-8", "GBK",$file);
if(is_file($file)){
if(@chmod($file, $chmod)){
echo $nfile.' 权限修改成功<br>';
}else{
echo '<span class="error">'.$nfile.' 权限修改失败</span><br>';
}
}elseif(is_dir($file)){
if(@chmod($file, $chmod)){
echo $nfile.' 权限修改成功<br>';
}else{
echo '<span class="error">'.$nfile.' 权限修改失败</span><br>';
}
$foldersAndFiles = @scandir($file);
$entries = @array_slice($foldersAndFiles, 2);
foreach($entries as $entry){
$nentry = iconv("GBK", "UTF-8",$entry);
ChmodMine($nfile.'/'.$nentry, $chmod);
}
}else{
echo '<span class="error">'.$nfile.' 文件不存在!</span><br>';
}
}
if(@$_POST['select_item']['d']){
foreach($_POST['select_item']['d'] as $val){
ChmodMine($val,$chmod);
}
}
if(@$_POST['select_item']['f']){
foreach($_POST['select_item']['f'] as $val){
ChmodMine($val,$chmod);
}
}
echo "<a href=\"".$meurl."?op=home&folder=".$_SESSION['folder']."\">返回上次浏览的文件夹</a>\n";
echo "</div>";
mainbottom();
}else{
printerror("您没有选择文件");
}
}
endif;
/****************************************************************/
/* function switch() */
/* */
/* Switches functions. */
/* Recieves $op() and switches to it *.
/****************************************************************/
switch($op) {
case "home":
home();
break;
case "up":
up();
break;
case "yupload":
if(!isset($_REQUEST['url'])){
printerror('您没有输入文件地址!');
}elseif(isset($_REQUEST['ndir'])){
yupload($_REQUEST['url'], $_REQUEST['ndir'], @$_REQUEST['unzip'] ,@$_REQUEST['delzip']);
}else{
yupload($_REQUEST['url'], './', @$_REQUEST['unzip'] ,@$_REQUEST['delzip']);
}
break;
case "upload":
if(!isset($_FILES['upfile'])){
printerror('您没有选择文件!');
}elseif(isset($_REQUEST['ndir'])){
upload($_FILES['upfile'], $_REQUEST['ndir'], @$_REQUEST['unzip'] ,@$_REQUEST['delzip']);
}else{
upload($_FILES['upfile'], './', @$_REQUEST['unzip'] ,@$_REQUEST['delzip']);
}
break;
case "unz":
unz($_REQUEST['dename']);
break;
case "unzip":
unzip($_REQUEST['dename'],$_REQUEST['ndir'],@$_REQUEST['del']);
break;
case "sqlb":
sqlb();
break;
case "sqlbackup":
sqlbackup($_POST['ip'], $_POST['sql'], $_POST['username'], $_POST['password']);
break;
case "ftpa":
ftpa();
break;
case "ftpall":
ftpall($_POST['ftpip'], $_POST['ftpuser'], $_POST['ftppass'], $_POST['goto'], $_POST['ftpfile'], $_POST['del']);
break;
case "edit":
edit($_REQUEST['fename']);
break;
case "save":
save($_REQUEST['ncontent'], $_REQUEST['fename'], $_REQUEST['encode']);
break;
case "cr":
cr();
break;
case "create":
create($_REQUEST['nfname'], $_REQUEST['isfolder'], $_REQUEST['ndir']);
break;
case "ren":
ren($_REQUEST['file']);
break;
case "rename":
renam($_REQUEST['rename'], $_REQUEST['nrename'], $folder);
break;
case "movall":
movall(@$_REQUEST['file'], @$_REQUEST['ndir'], $folder);
break;
case "copy":
tocopy(@$_REQUEST['file'], @$_REQUEST['ndir'], $folder);
break;
case "printerror":
printerror($error);
break;
case "logout":
logout();
break;
case "z":
z($_REQUEST['dename'],$_REQUEST['folder']);
break;
case "zip":
zip($_REQUEST['dename'],$_REQUEST['folder']);
break;
default:
home();
break;
}
?>
更多精彩

