效果图
<?php
//读取管理项目,并且展示
require_once 'lib/dir.func.php';
require_once 'lib/file.func.php';
date_default_timezone_set("PRC");
error_reporting(E_ALL&~E_NOTICE);
define('WEBROOT','webRoot');
$path=$_REQUEST['path']?$_REQUEST['path']:WEBROOT;
$act=$_REQUEST['act']?$_REQUEST['act']:'';
$dirName=$_REQUEST['dirName']?$_REQUEST['dirName']:'';
$fileName=$_REQUEST['fileName']?$_REQUEST['fileName']:'';
$info=read_directory($path);
// print_r($info);exit;
if(!is_array($info)){
exit("
alert('读取失败');
location.href='index.php';
");
}
//根据不同请求完成不同操作
switch($act){
case 'createDir':
// echo $dirName;exit;
$res=create_dir($path.DIRECTORY_SEPARATOR.$dirName);
if($res===true){
$result['msg']=basename($dirName).'创建成功';
$result['icon']=1;
}else{
$result['msg']=$res;
$result['icon']=2;
}
exit(json_encode($result));
break;
case 'renameDir':
$newName=$path.DIRECTORY_SEPARATOR.$dirName;
$res=rename_dir($fileName,$newName);
if($res===true){
$result['msg']=$fileName.'重命名成功';
$result['icon']=1;
}else{
$result['msg']=$res;
$result['icon']=2;
}
exit(json_encode($result));
break;
case 'delDir':
$res=del_dir($fileName);
if($res===true){
$result['msg']=basename($fileName).'删除成功';
$result['icon']=1;
}else{
$result['msg']=$res;
$result['icon']=2;
}
exit(json_encode($result));
break;
//文件部分
case 'createFile':
$res=create_file($path.DIRECTORY_SEPARATOR.$fileName);
if($res===true){
$result['msg']=basename($fileName).'文件新建成功';
$result['icon']=1;
}else{
$result['msg']=$res;
$result['icon']=2;
}
exit(json_encode($result));
break;
case 'showContents':
$res=show_contents($fileName);
exit($res);
break;
}?>
WEB在线文件管理器切换导航 首页
搜索WEB在线文件管理器
WEB在线文件管理器主要是用于管理项目文件,实现在线编辑、修改、删除等操作。
类型
名称
读/写/执行
访问时间
操作
if(is_array($info['dir'])){
foreach($info['dir'] as $val){ ?>
<?php echo $val['showName'];?><?php echo $val['atime'];?>&path=<?php echo $path;?>' data-showName='<?php echo $val['showName'];?>'>重命名
&path=<?php echo $path;?>' data-showName='<?php echo $val['showName'];?>'>删除
}
} ?>
if(is_array($info['file'])){
foreach($info['file'] as $val){ ?>
<?php echo $val['showName'];?><?php echo $val['atime'];?>}
} ?>
目录函数文件 dir.func.php<?php /**
* 读取目录下的信息返回
* @method read_directory
* @param string $path 目标目录
* @return mixed false|array */function read_directory(string $path){ if(!is_dir($path)){ return false;
} $info=[]; $handle=opendir($path); while(($item=@readdir($handle))!==false){ if($item!='.'&&$item!='..'){ $filePath=$path.DIRECTORY_SEPARATOR.$item; $info['fileName']=$filePath; $info['showName']=$item; $info['readable']=is_readable($filePath)?true:false; $info['writable']=is_writable($filePath)?true:false; $info['executable']=is_executable($filePath)?true:false; $info['atime']=date('Y/m/d H:i:s',fileatime($filePath)); if(is_file($filePath)){ $arr['file'][]=$info;
} if(is_dir($filePath)){ $arr['dir'][]=$info;
}
}
} closedir($handle); return $arr;
}/**
* 创建目录
* @method create_dir
* @param string $path 目录名称
* @return mixed true|string */function create_dir(string $path){ if(is_dir($path)){ return $path.'当前目录已存在同名文件';
} if(!mkdir($path,755,true)){ return $path.'目录创建失败';
} return true;
}/**
* 重命名目录
* @method rename_dir
* @param string $oldName 原目录
* @param string $newName 新名称
* @return mixed string|true */function rename_dir(string $oldName,string $newName){ if(!is_dir($oldName)){ return '原目录不存在';
} if(is_dir($newName)){ return '当前目录下存在同名文件';
} if(!rename($oldName,$newName)){ return '重命名失败';
} return true;
}/**
* 删除目录
* @method del_dir
* @param string $path 目录名称
* @return mixed true|string */function del_dir(string $path){ if(!is_dir($path)){ return '目录不存在';
} $handle=opendir($path); while(($item=@readdir($handle))!==false){ if($item!='.'&&$item!='..'){ $pathName=$path.DIRECTORY_SEPARATOR.$item; if(is_file($pathName)){
@unlink($pathName);
} if(is_dir($pathName)){ $func=__FUNCTION__; $func($pathName);
}
}
} closedir($handle); rmdir($path); return true;
}
文件函数 file.func.php<?php /**
* 创建文件
* @method create_file
* @param string $fileName 文件名称
* @param array $allowExt 允许的文件类型
* @return mixed true|string */function create_file(string $fileName,$allowExt=array('txt','html','php')){ if(is_file($fileName)){ return '当前目录下存在同名文件';
} $ext=strtolower(pathinfo($fileName,PATHINFO_EXTENSION)); if(!in_array($ext,$allowExt)){ return '非法文件类型';
} if(!touch($fileName)){ return '文件创建失败';
} return true;
}/**
* 查看文件内容
* @method show_contents
* @param string $fileName 文件名称
* @param array $allowExt 允许的类型
* @return string 文件内容 */function show_contents(string $fileName,$allowExt=array('jpg','jpeg','png','gif','txt','html','php')){ if(!is_file($fileName)){ return '文件不存在';
} $ext=strtolower(pathinfo($fileName,PATHINFO_EXTENSION)); if(!in_array($ext,$allowExt)){ return '非法文件类型';
} //检测是否是真实图片
if(getimagesize($fileName)){ $res="";
}else{ $str=file_get_contents($fileName); if(strlen($str)>0){ $res=highlight_string($str,true);
}else{ $res='文件中没有内容';
}
} return $res;
}
本文来自php中文网,php教程栏目,欢迎学习!