在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
以下是个人总结的PHP文件操作函数。当然,这只是部分,还有很多,我没有列出来。 一 、解析路径: 1 获得文件名: $path = "/home/httpd/html/index.php";
$file = basename($path,".php"); // $file is set to "index"
2 得到目录部分: $path = "/etc/passwd";
$file = dirname($path); // $file is set to "/etc"
3 得到路径关联数组 $pathinfo = pathinfo("www/test/index.html");
var_dump($pathinfo); // $path['dirname'] $path['basename'] $path['extenssion'] echo filetype('/etc/passwd'); // file
echo filetype('/etc/'); // dir 1. fstat();
// 打开文件
$fp = fopen("/etc/passwd", "r"); // 取得统计信息 $fstat = fstat($fp); // 关闭文件 fclose($fp); // 只显示关联数组部分 print_r(array_slice($fstat, 13)); 2. stat() 四、计算大小 // 输出类似:somefile.txt: 1024 bytes
$filename = 'somefile.txt'; echo $filename . ': ' . filesize($filename) . ' bytes'; // $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
五、 访问与修改时间
六、 文件的I/O操作 1. fopen -- 打开文件或者 URL $handle = fopen("/home/rasmus/file.txt", "r");
2. file -- 把整个文件读入一个数组中(此函数是很有用的)
代码
}
// 另一个例子将 web 页面读入字符串。参见 file_get_contents()。 $html = implode('', file ('http://www.example.com/'));
3. fgets -- 从文件指针中读取一行 $handle = @fopen("/tmp/inputfile.txt", "r");
if ($handle) { while (!feof($handle)) { $buffer = fgets($handle, 4096); echo $buffer; } fclose($handle); }
4. fgetss -- 从文件指针中读取一行并过滤掉 HTML 标记 可以用可选的第三个参数指定哪些标记不被去掉
代码
}
closedir($handle); }
$dir = '/tmp';
$files1 = scandir($dir); $files2 = scandir($dir, 1); print_r($files1); print_r($files2);
另外注: 七、 对文件属性的操作(操作系统环境不同,可能有所不一样,这点要注意) 1文件是否可读: boolis_readable ( string filename ) 如果由 记住 PHP 也许只能以运行 webserver 的用户名(通常为 'nobody')来访问文件。不计入安全模式的限制。 2 文件是否可写 bool is_writable ( string filename ) 如果文件存在并且可写则返回 TRUE。 记住 PHP 也许只能以运行 webserver 的用户名(通常为 'nobody')来访问文件。不计入安全模式的限制
3 检查文件是否存在 boolfile_exists ( string filename ) 如果由
1 <?php 2 /*************************************************************************************** 3 文件名:File.cls.php 4 文件简介:类clsFile的定义,对文件操作的封装 5 版本:2.0 最后修改日期:2011-8-23 6 ****************************************************************************************/ 7 !defined('INIT_PHPV') && die('No direct script access allowed'); 8 class clsFile 9 { 10 private $fileName_str; //文件的路径 11 private $fileOpenMethod_str; //文件打开模式 12 13 function __construct($fileName_str='',$fileOpenMethod_str='readOnly')//路径,默认为空;模式,默认均为只读 14 { 15 //构造函数,完成数据成员的初始化 16 $this->fileName_str=$fileName_str; 17 $this->fileOpenMethod_str=$fileOpenMethod_str; 18 } 19 20 function __destruct() 21 { 22 //析构函数 23 } 24 25 public function __get($valName_val)//欲取得的数据成员名称 26 { 27 //特殊函数,取得指定名称数据成员的值 28 return $this->$valName_val; 29 } 30 31 private function on_error($errMsg_str='Unkown Error!',$errNo_int=0)//错误信息,错误代码 32 { 33 echo '程序错误:'.$errMsg_str.'错误代码:'.$errNo_int;//出错处理函数 34 } 35 36 public function open() 37 { 38 //打开相应文件,返回文件资源标识 39 //根据fileOpenMethod_str选择打开方式 40 switch($this->fileOpenMethod_str) 41 { 42 case 'readOnly': 43 $openMethod_str='r'; //只读,指针指向文件头 44 break; 45 case 'readWrite': 46 $openMethod_str='r+'; //读写,指针指向文件头 47 break; 48 case 'writeAndInit': 49 $openMethod_str='w'; //只写,指针指向文件头将大小截为零,不存在则创建 50 break; 51 case 'readWriteAndInit': 52 $openMethod_str='r+'; //读写,指针指向文件头将大小截为零,不存在则创建 53 break; 54 case 'writeAndAdd': 55 $openMethod_str='a'; //只写,指针指向文件末尾,不存在则创建 56 break; 57 case 'readWriteAndAdd': 58 $openMethod_str='a+'; //读写,指针指向文件末尾,不存在则创建 59 break; 60 default: 61 $this->on_error('Open method error!',310);//出错处理 62 exit; 63 } 64 65 //打开文件 66 if(!$fp_res=fopen($this->fileName_str,$openMethod_str)) 67 { 68 $this->on_error('Can\'t open the file!',301);//出错处理 69 exit; 70 } 71 72 return $fp_res; 73 } 74 75 public function close($fp_res)//由open返回的资源标识 76 { 77 //关闭所打开的文件 78 if(!fclose($fp_res)) 79 { 80 $this->on_error('Can\'t close the file!',302);//出错处理 81 exit; 82 } 83 } 84 85 public function write()//$fp_res,$data_str,$length_int:文件资源标识,写入的字符串,长度控制 86 { 87 //将字符串string_str写入文件fp_res,可控制写入的长度length_int 88 //判断参数数量,调用相关函数 89 $argNum_int=func_num_args();//参数个数 90 91 $fp_res=func_get_arg(0); //文件资源标识 92 $data_str=func_get_arg(1); //写入的字符串 93 94 if($argNum_int==3) 95 { 96 $length_int=func_get_arg(2); //长度控制 97 if(!fwrite($fp_res,$data_str,$length_int)) 98 { 99 $this->on_error('Can\'t write the file!',303);//出错处理 100 exit; 101 } 102 } 103 else 104 { 105 if(!fwrite($fp_res,$data_str)) 106 { 107 $this->on_error('Can\'t write the file!',303);//出错处理 108 exit; 109 } 110 } 111 } 112 113 public function read_line()//$fp_res,$length_int:文件资源标识,读入长度 114 { 115 //从文件fp_res中读入一行字符串,可控制长度 116 //判断参数数量 117 $argNum_int=func_num_args(); 118 $fp_res=func_get_arg(0); 119 120 if($argNum_int==2) 121 { 122 $length_int=func_get_arg(1); 123 if($string_str=!fgets($fp_res,$length_int)) 124 { 125 $this->on_error('Can\'t read the file!',304);//出错处理 126 exit; 127 } 128 return $string_str; 129 } 130 else 131 { 132 if(!$string_str=fgets($fp_res)) 133 { 134 $this->on_error('Can\'t read the file!',304);//出错处理 135 exit; 136 } 137 return $string_str; 138 } 139 } 140 141 public function read($fp_res,$length_int)//文件资源标识,长度控制 142 { 143 //读入文件fp_res,最长为length_int 144 if(!$string_str=fread($fp_res,$length_int)) 145 { 146 $this->on_error('Can\'t read the file!',305);//出错处理 147 exit; 148 } 149 return $string_str; 150 } 151 152 public function is_exists($fileName_str)//文件名 153 { 154 //检查文件$fileName_str是否存在,存在则返回true,不存在返回false 155 return file_exists($fileName_str); 156 } 157 158 /******************取得文件大小*********************/ 159 /* 160 取得文件fileName_str的大小 161 $fileName_str 是文件的路径和名称 162 返回文件大小的值 163 */ 164 public function get_file_size($fileName_str)//文件名 165 { 166 return filesize($fileName_str); 167 } 168 169 /******************转换文件大小的表示方法*********************/ 170 /* 171 $fileSize_int文件的大小,单位是字节 172 返回转换后带计量单位的文件大小 173 */ 174 public function change_size_express($fileSize_int)//文件名 175 { 176 if($fileSize_int>1024) 177 { 178 $fileSizeNew_int=$fileSize_int/1024;//转换为K 179 $unit_str='KB'; 180 if($fileSizeNew_int>1024) 181 { 182 $fileSizeNew_int=$fileSizeNew_int/1024;//转换为M 183 $unit_str='MB'; 184 } 185 $fileSizeNew_arr=explode('.',$fileSizeNew_int); 186 $fileSizeNew_str=$fileSizeNew_arr[0].'.'.substr($fileSizeNew_arr[1],0,2).$unit_str; 187 } 188 return $fileSizeNew_str; 189 } 190 /******************重命名文件*********************/ 191 /* 192 将oldname_str指定的文件重命名为newname_str 193 $oldName_str是文件的原名称 194 $newName_str是文件的新名称 195 返回错误信息 196 */ 197 public function rename_file($oldName_str,$newName_str) 198 { 199 if(!rename($oldName_str,$newName_str)) 200 { 201 $this->on_error('Can\'t rename file!',308); 202 exit; 203 } 204 } 205 206 /******************删除文件*********************/ 207 /* 208 将filename_str指定的文件删除 209 $fileName_str要删除文件的路径和名称 210 返回错误信息 211 */ 212 public function delete_file($fileName_str)// 213 { 214 if(!unlink($fileName_str)) 215 { 216 $this->on_error('Can\'t delete file!',309);//出错处理 217 exit; 218 } 219 } 220 221 /******************取文件的扩展名*********************/ 222 /* 223 取filename_str指定的文件的扩展名 224 $fileName_str要取类型的文件路径和名称 225 返回文件的扩展名 226 */ 227 public function get_file_type($fileName_str) 228 { 229 $fileNamePart_arr=explode('.',$fileName_str); 230 while(list(,$fileType_str)=each($fileNamePart_arr)) 231 { 232 $type_str=$fileType_str; 233 } 234 return $type_str; 235 } 236 237 /******************判断文件是否是规定的文件类型*********************/ 238 /* 239 $fileType_str规定的文件类型 240 $fileName_str要取类型的文件路径和名称 241 返回false或true 242 */ 243 public function is_the_type($fileName_str,$fileType_arr) 244 { 245 $cheakFileType_str=$this->get_file_type($fileName_str); 246 if(!in_array($cheakFileType_str,$fileType_arr)) 247 { 248 return false; 249 } 250 else 251 { 252 return true; 253 } 254 } 255 256 /******************上传文件,并返回上传后的文件信息*********************/ 257 /* 258 $fileName_str本地文件名 259 $filePath上传文件的路径,如果$filePath是str则上传到同一目录用一个文件命名,新文件名在其加-1,2,3..,如果是arr则顺序命名 260 $allowType_arr允许上传的文件类型,留空不限制 261 $maxSize_int允许文件的最大值,留空不限制 262 返回的是新文件信息的二维数组:$reFileInfo_arr 263 */ 264 public function upload_file($fileName_str,$filePath,$allowType_arr='',$maxSize_int='') 265 { 266 $fileName_arr=$_FILES[$fileName_str]['name']; //文件的名称 267 $fileTempName_arr=$_FILES[$fileName_str]['tmp_name']; //文件的缓存文件 268 $fileSize_arr=$_FILES[$fileName_str]['size'];//取得文件大小 269 $reFileInfo_arr=array(); 270 $num=count($fileName_arr)-1; 271 for($i=0;$i<=$num;$i++) 272 { 273 if($fileName_arr[$i]!='') 274 { 275 if($allowType_arr!='' and !$this->is_the_type($fileName_arr[$i],$allowType_arr))//判断是否是允许的文件类型 276 { 277 $this->on_error('The file is not allowed type!',310);//出错处理 278 break; 279 } 280 281 if($maxSize_int!='' and $fileSize_arr[$i]>$maxSize_int) 282 { 283 $this->on_error('The file is too big!',311);//出错处理 284 break; 285 } 286 287 $j=$i+1; 288 $fileType_str=$this->get_file_type($fileName_arr[$i]);//取得文件类型 289 if(!is_array($filePath)) 290 { 291 $fileNewName_str=$filePath.'-'.($j).'.'.$fileType_str; 292 } 293 else 294 { 295 $fileNewName_str=$filePath_arr[$i].'.'.$fileType_str; 296 } 297 copy($fileTempName_arr[$i],$fileNewName_str);//上传文件 298 unlink($fileTempName_arr[$i]);//删除缓存文件 299 300 //---------------存储文件信息--------------------// 301 $doFile_arr=explode('/',$fileNewName_str); 302 $doFile_num_int=count($doFile_arr)-1; 303 $reFileInfo_arr[$j]['name']=$doFile_arr[$doFile_num_int]; 304 $reFileInfo_arr[$j]['type']= 全部评论
专题导读
热门推荐
热门话题
阅读排行榜
|
请发表评论