以下是个人总结的PHP文件操作函数。当然,这只是部分,还有很多,我没有列出来。
一 、解析路径:
1 获得文件名:
basename();
给出一个包含有指向一个文件的全路径的字符串,本函数返回基本的文件名。如果文件名是以 suffix 结束的,那这一部分也会被去掉。
eg:
复制代码 代码如下:
$path = "/home/httpd/html/index.php";
$file = basename($path,".php"); // $file is set to "index"
复制代码 代码如下:
$path = "/etc/passwd";
$file = dirname($path); // $file is set to "/etc"
复制代码 代码如下:
$pathinfo = pathinfo("www/test/index.html");
var_dump($pathinfo);
// $path['dirname']
$path['basename']
$path['extenssion']
复制代码 代码如下:
echo filetype('/etc/passwd'); // file
echo filetype('/etc/'); // dir
复制代码 代码如下:
// 打开文件
$fp = fopen("/etc/passwd", "r");
// 取得统计信息
$fstat = fstat($fp);
// 关闭文件
fclose($fp);
// 只显示关联数组部分
print_r(array_slice($fstat, 13));
复制代码 代码如下:
// 输出类似:somefile.txt: 1024 bytes
$filename = 'somefile.txt';
echo $filename . ': ' . filesize($filename) . ' bytes';
2. disk_free_space()
获得目录所在磁盘分区的可用空间(字节单位)
eg
[code]
// $df 包含根目录下可用的字节数
$df = disk_free_space("/");
//在 Windows 下:
disk_free_space("C:");
disk_free_space("D:");
复制代码 代码如下:
function dir_size($dir){
$dir_size = 0;
if($dh = @opendir($dir)){
while(($filename = readdir($dh)) != false){
if($filename !='.' and $filename !='..'){
if(is_file($dir.'/'.$filename)){
$dir_size +=filesize($dir.'/'.$filename);
}else if(is_dir($dir.'/'.$filename)){
$dir_size +=dir_size($dir.'/'.$filename);
}
}
}#end while
}# end opendir
@closedir($dh);
return $dir_size;
} #end function
复制代码 代码如下:
$handle = fopen("/home/rasmus/file.txt", "r");
复制代码 代码如下:
$lines = file('http://www.example.com/');
// 在数组中循环,显示 HTML 的源文件并加上行号。
foreach ($lines as $line_num => $line) {
echo "Line #{$line_num} : " . htmlspecialchars($line) . "
\n";
}
// 另一个例子将 web 页面读入字符串。参见 file_get_contents()。
$html = implode('', file ('http://www.example.com/'));
复制代码 代码如下:
$handle = @fopen("/tmp/inputfile.txt", "r");
if ($handle) {
while (!feof($handle)) {
$buffer = fgets($handle, 4096);
echo $buffer;
}
fclose($handle);
}
复制代码 代码如下:
// 注意在 4.0.0-RC2 之前不存在 !== 运算符
if ($handle = opendir('/path/to/files')) {
echo "Directory handle: $handle\n";
echo "Files:\n";
while (false !== ($file = readdir($handle))) {
echo "$file\n";
}
while ($file = readdir($handle)) {
echo "$file\n";
}
closedir($handle);
}
[code]
3. scandir -- 列出指定路径中的文件和目录(很有用),返回一个 array,包含有 directory 中的文件和目录。
默认的排序顺序是按字母升序排列。如果使用了可选参数 sorting_order(设为 1),则排序顺序是按字母降序排列。
eg:
[code]
$dir = '/tmp';
$files1 = scandir($dir);
$files2 = scandir($dir, 1);
print_r($files1);
print_r($files2);
复制代码 代码如下:
/***************************************************************************************
文件名:File.cls.php
文件简介:类clsFile的定义,对文件操作的封装
版本:2.0 最后修改日期:2011-8-23
****************************************************************************************/
!defined('INIT_PHPV') && die('No direct script access allowed');
class clsFile
{
private $fileName_str; //文件的路径
private $fileOpenMethod_str; //文件打开模式
function __construct($fileName_str='',$fileOpenMethod_str='readOnly')//路径,默认为空;模式,默认均为只读
{
//构造函数,完成数据成员的初始化
$this->fileName_str=$fileName_str;
$this->fileOpenMethod_str=$fileOpenMethod_str;
}
function __destruct()
{
//析构函数
}
public function __get($valName_val)//欲取得的数据成员名称
{
//特殊函数,取得指定名称数据成员的值
return $this->$valName_val;
}
private function on_error($errMsg_str='Unkown Error!',$errNo_int=0)//错误信息,错误代码
{
echo '程序错误:'.$errMsg_str.'错误代码:'.$errNo_int;//出错处理函数
}
public function open()
{
//打开相应文件,返回文件资源标识
//根据fileOpenMethod_str选择打开方式
switch($this->fileOpenMethod_str)
{
case 'readOnly':
$openMethod_str='r'; //只读,指针指向文件头
break;
case 'readWrite':
$openMethod_str='r+'; //读写,指针指向文件头
break;
case 'writeAndInit':
$openMethod_str='w'; //只写,指针指向文件头将大小截为零,不存在则创建
break;
case 'readWriteAndInit':
$openMethod_str='r+'; //读写,指针指向文件头将大小截为零,不存在则创建
break;
case 'writeAndAdd':
$openMethod_str='a'; //只写,指针指向文件末尾,不存在则创建
break;
case 'readWriteAndAdd':
$openMethod_str='a+'; //读写,指针指向文件末尾,不存在则创建
break;
default:
$this->on_error('Open method error!',310);//出错处理
exit;
}
//打开文件
if(!$fp_res=fopen($this->fileName_str,$openMethod_str))
{
$this->on_error('Can\'t open the file!',301);//出错处理
exit;
}
return $fp_res;
}
public function close($fp_res)//由open返回的资源标识
{
//关闭所打开的文件
if(!fclose($fp_res))
{
$this->on_error('Can\'t close the file!',302);//出错处理
exit;
}
}
public function write()//$fp_res,$data_str,$length_int:文件资源标识,写入的字符串,长度控制
{
//将字符串string_str写入文件fp_res,可控制写入的长度length_int
//判断参数数量,调用相关函数
$argNum_int=func_num_args();//参数个数
$fp_res=func_get_arg(0); //文件资源标识
$data_str=func_get_arg(1); //写入的字符串
if($argNum_int==3)
{
$length_int=func_get_arg(2); //长度控制
if(!fwrite($fp_res,$data_str,$length_int))
{
$this->on_error('Can\'t write the file!',303);//出错处理
exit;
}
}
else
{
if(!fwrite($fp_res,$data_str))
{
$this->on_error('Can\'t write the file!',303);//出错处理
exit;
}
}
}
public function read_line()//$fp_res,$length_int:文件资源标识,读入长度
{
//从文件fp_res中读入一行字符串,可控制长度
//判断参数数量
$argNum_int=func_num_args();
$fp_res=func_get_arg(0);
if($argNum_int==2)
{
$length_int=func_get_arg(1);
if($string_str=!fgets($fp_res,$length_int))
{
$this->on_error('Can\'t read the file!',304);//出错处理
exit;
}
return $string_str;
}
else
{
if(!$string_str=fgets($fp_res))
{
$this->on_error('Can\'t read the file!',304);//出错处理
exit;
}
return $string_str;
}
}
public function read($fp_res,$length_int)//文件资源标识,长度控制
{
//读入文件fp_res,最长为length_int
if(!$string_str=fread($fp_res,$length_int))
{
$this->on_error('Can\'t read the file!',305);//出错处理
exit;
}
return $string_str;
}
public function is_exists($fileName_str)//文件名
{
//检查文件$fileName_str是否存在,存在则返回true,不存在返回false
return file_exists($fileName_str);
}
/******************取得文件大小*********************/
/*
取得文件fileName_str的大小
$fileName_str 是文件的路径和名称
返回文件大小的值
*/
public function get_file_size($fileName_str)//文件名
{
return filesize($fileName_str);
}
/******************转换文件大小的表示方法*********************/
/*
$fileSize_int文件的大小,单位是字节
返回转换后带计量单位的文件大小
*/
public function change_size_express($fileSize_int)//文件名
{
if($fileSize_int>1024)
{
$fileSizeNew_int=$fileSize_int/1024;//转换为K
$unit_str='KB';
if($fileSizeNew_int>1024)
{
$fileSizeNew_int=$fileSizeNew_int/1024;//转换为M
$unit_str='MB';
}
$fileSizeNew_arr=explode('.',$fileSizeNew_int);
$fileSizeNew_str=$fileSizeNew_arr[0].'.'.substr($fileSizeNew_arr[1],0,2).$unit_str;
}
return $fileSizeNew_str;
}
/******************重命名文件*********************/
/*
将oldname_str指定的文件重命名为newname_str
$oldName_str是文件的原名称
$newName_str是文件的新名称
返回错误信息
*/
public function rename_file($oldName_str,$newName_str)
{
if(!rename($oldName_str,$newName_str))
{
$this->on_error('Can\'t rename file!',308);
exit;
}
}
/******************删除文件*********************/
/*
将filename_str指定的文件删除
$fileName_str要删除文件的路径和名称
返回错误信息
*/
public function delete_file($fileName_str)//
{
if(!unlink($fileName_str))
{
$this->on_error('Can\'t delete file!',309);//出错处理
exit;
}
}
/******************取文件的扩展名*********************/
/*
取filename_str指定的文件的扩展名
$fileName_str要取类型的文件路径和名称
返回文件的扩展名
*/
public function get_file_type($fileName_str)
{
$fileNamePart_arr=explode('.',$fileName_str);
while(list(,$fileType_str)=each($fileNamePart_arr))
{
$type_str=$fileType_str;
}
return $type_str;
}
/******************判断文件是否是规定的文件类型*********************/
/*
$fileType_str规定的文件类型
$fileName_str要取类型的文件路径和名称
返回false或true
*/
public function is_the_type($fileName_str,$fileType_arr)
{
$cheakFileType_str=$this->get_file_type($fileName_str);
if(!in_array($cheakFileType_str,$fileType_arr))
{
return false;
}
else
{
return true;
}
}
/******************上传文件,并返回上传后的文件信息*********************/
/*
$fileName_str本地文件名
$filePath上传文件的路径,如果$filePath是str则上传到同一目录用一个文件命名,新文件名在其加-1,2,3..,如果是arr则顺序命名
$allowType_arr允许上传的文件类型,留空不限制
$maxSize_int允许文件的最大值,留空不限制
返回的是新文件信息的二维数组:$reFileInfo_arr
*/
public function upload_file($fileName_str,$filePath,$allowType_arr='',$maxSize_int='')
{
$fileName_arr=$_FILES[$fileName_str]['name']; //文件的名称
$fileTempName_arr=$_FILES[$fileName_str]['tmp_name']; //文件的缓存文件
$fileSize_arr=$_FILES[$fileName_str]['size'];//取得文件大小
$reFileInfo_arr=array();
$num=count($fileName_arr)-1;
for($i=0;$i{
if($fileName_arr[$i]!='')
{
if($allowType_arr!='' and !$this->is_the_type($fileName_arr[$i],$allowType_arr))//判断是否是允许的文件类型
{
$this->on_error('The file is not allowed type!',310);//出错处理
break;
}
if($maxSize_int!='' and $fileSize_arr[$i]>$maxSize_int)
{
$this->on_error('The file is too big!',311);//出错处理
break;
}
$j=$i+1;
$fileType_str=$this->get_file_type($fileName_arr[$i]);//取得文件类型
if(!is_array($filePath))
{
$fileNewName_str=$filePath.'-'.($j).'.'.$fileType_str;
}
else
{
$fileNewName_str=$filePath_arr[$i].'.'.$fileType_str;
}
copy($fileTempName_arr[$i],$fileNewName_str);//上传文件
unlink($fileTempName_arr[$i]);//删除缓存文件
//---------------存储文件信息--------------------//
$doFile_arr=explode('/',$fileNewName_str);
$doFile_num_int=count($doFile_arr)-1;
$reFileInfo_arr[$j]['name']=$doFile_arr[$doFile_num_int];
$reFileInfo_arr[$j]['type']=$fileType_str;
$reFileInfo_arr[$j]['size']=$this->change_size_express($fileSize_arr[$i]);
}
}
return $reFileInfo_arr;
}
/******************备份文件夹*********************/
}
?>