php多文件上传封装_PHP教程

编辑Tag赚U币
教程Tag:php上传添加

推荐:php生成圆角图片的方法
具体如下: 代码如下:?php $image_file = $_GET['src']; $corner_radius = isset($_GET['radius']) ? $_GET['radius'] : 20; // The default corner radius is set to 20px $topleft = (isset($_GET['topleft']) and $_GET['topleft'] == no) ? false : true; // Top-l

多文件的上传实现

1 利用单文件封装

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 
  2. <html> 
  3. <head> 
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 
  5. <title>Insert title here</title> 
  6. </head> 
  7. <body> 
  8. <form action="doAction5.php" method="post" enctype="multipart/form-data"> 
  9. 请选择您要上传的文件:<input type="file" name="myFile1" /><br/> 
  10. 请选择您要上传的文件:<input type="file" name="myFile2" /><br/> 
  11. 请选择您要上传的文件:<input type="file" name="myFile3" /><br/> 
  12. 请选择您要上传的文件:<input type="file" name="myFile4" /><br/> 
  13. <input type="submit" value="上传"/> 
  14. </form> 
  15. </body> 
  16. </html> 
  1. <?php 
  2. //print_r($_FILES); 
  3. header('content-type:text/html;charset=utf-8'); 
  4. include_once 'upFunc.php'
  5. foreach ($_FILES as $fileInfo){ 
  6.     $file[]=uploadFile($fileInfo); 
这里的思路,从print_r($_FILES)中去找,打印出来看到是个二维数组,很简单,遍历去用就好了!

上面那个function的定义改一下,给定一些默认值

  1. function uploadFile($fileInfo,$path="uploads",$allowExt=array('jpeg','jpg','png','tif'),$maxSize=10485760){ 

这样子,简单是简单,但遇到一些问题。

正常的上传4个图片是没问题,但要是中间激活了函数中的exit,就会立即停止,导致其他图片也无法上传。

2 升级版封装

旨在实现针对多个或单个文件上传的封装

首先这样子写个静态文件

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 
  2. <html> 
  3. <head> 
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 
  5. <title>Insert title here</title> 
  6. </head> 
  7. <body> 
  8. <form action="doAction5.php" method="post" enctype="multipart/form-data"> 
  9. 请选择您要上传的文件:<input type="file" name="myFile[]" /><br/> 
  10. 请选择您要上传的文件:<input type="file" name="myFile[]" /><br/> 
  11. 请选择您要上传的文件:<input type="file" name="myFile[]" /><br/> 
  12. 请选择您要上传的文件:<input type="file" name="myFile[]" /><br/> 
  13. <input type="submit" value="上传"/> 
  14. </form> 
  15. </body> 
  16. </html> 
打印查看一下$_FILES数组内容
  1. Array 
  2.     [myFile] => Array 
  3.         ( 
  4.             [name] => Array 
  5.                 ( 
  6.                     [0] => test32.png 
  7.                     [1] => test32.png 
  8.                     [2] => 333.png 
  9.                     [3] => test41.png 
  10.                 ) 
  11.             [type] => Array 
  12.                 ( 
  13.                     [0] => image/png 
  14.                     [1] => image/png 
  15.                     [2] => image/png 
  16.                     [3] => image/png 
  17.                 ) 
  18.             [tmp_name] => Array 
  19.                 ( 
  20.                     [0] => D:\wamp\tmp\php831C.tmp 
  21.                     [1] => D:\wamp\tmp\php834C.tmp 
  22.                     [2] => D:\wamp\tmp\php837C.tmp 
  23.                     [3] => D:\wamp\tmp\php83BB.tmp 
  24.                 ) 
  25.             [error] => Array 
  26.                 ( 
  27.                     [0] => 0 
  28.                     [1] => 0 
  29.                     [2] => 0 
  30.                     [3] => 0 
  31.                 ) 
  32.             [size] => Array 
  33.                 ( 
  34.                     [0] => 46174 
  35.                     [1] => 46174 
  36.                     [2] => 34196 
  37.                     [3] => 38514 
  38.                 ) 
  39.         ) 

可以得到一个三维数组。

复杂是复杂了,但复杂的有规律,各项数值都在一起了,很方便我们取值!!

所以先得到文件信息,变成单文件处理那种信息

  1. function getFiles(){ 
  2.     $i=0; 
  3.     foreach($_FILES as $file){ 
  4.         if(is_string($file['name'])){  //单文件判定 
  5.             $files[$i]=$file
  6.             $i++; 
  7.         }elseif(is_array($file['name'])){ 
  8.             foreach($file['name'as $key=>$val){  //我的天,这个$key用的diao 
  9.                 $files[$i]['name']=$file['name'][$key]; 
  10.                 $files[$i]['type']=$file['type'][$key]; 
  11.                 $files[$i]['tmp_name']=$file['tmp_name'][$key]; 
  12.                 $files[$i]['error']=$file['error'][$key]; 
  13.                 $files[$i]['size']=$file['size'][$key]; 
  14.                 $i++; 
  15.             } 
  16.         } 
  17.     } 
  18.     return $files
  19.       
然后之前的那种exit错误,就把exit改一下就好了,这里用res
  1. function uploadFile($fileInfo,$path='./uploads',$flag=true,$maxSize=1048576,$allowExt=array('jpeg','jpg','png','gif')){ 
  2.     //$flag=true; 
  3.     //$allowExt=array('jpeg','jpg','gif','png'); 
  4.     //$maxSize=1048576;//1M 
  5.     //判断错误号 
  6.     $res=array(); 
  7.     if($fileInfo['error']===UPLOAD_ERR_OK){ 
  8.         //检测上传得到小 
  9.         if($fileInfo['size']>$maxSize){ 
  10.             $res['mes']=$fileInfo['name'].'上传文件过大'
  11.         } 
  12.         $ext=getExt($fileInfo['name']); 
  13.         //检测上传文件的文件类型 
  14.         if(!in_array($ext,$allowExt)){ 
  15.             $res['mes']=$fileInfo['name'].'非法文件类型'
  16.         } 
  17.         //检测是否是真实的图片类型 
  18.         if($flag){ 
  19.             if(!getimagesize($fileInfo['tmp_name'])){ 
  20.                 $res['mes']=$fileInfo['name'].'不是真实图片类型'
  21.             } 
  22.         } 
  23.         //检测文件是否是通过HTTP POST上传上来的 
  24.         if(!is_uploaded_file($fileInfo['tmp_name'])){ 
  25.             $res['mes']=$fileInfo['name'].'文件不是通过HTTP POST方式上传上来的'
  26.         } 
  27.         if($resreturn $res
  28.         //$path='./uploads'; 
  29.         if(!file_exists($path)){ 
  30.             mkdir($path,0777,true); 
  31.             chmod($path,0777); 
  32.         } 
  33.         $uniName=getUniName(); 
  34.         $destination=$path.'/'.$uniName.'.'.$ext
  35.         if(!move_uploaded_file($fileInfo['tmp_name'],$destination)){ 
  36.             $res['mes']=$fileInfo['name'].'文件移动失败'
  37.         } 
  38.         $res['mes']=$fileInfo['name'].'上传成功'
  39.         $res['dest']=$destination
  40.         return $res
  41.           
  42.     }else
  43.         //匹配错误信息 
  44.         switch ($fileInfo ['error']) { 
  45.             case 1 : 
  46.                 $res['mes'] = '上传文件超过了PHP配置文件中upload_max_filesize选项的值'
  47.                 break
  48.             case 2 : 
  49.                 $res['mes'] = '超过了表单MAX_FILE_SIZE限制的大小'
  50.                 break
  51.             case 3 : 
  52.                 $res['mes'] = '文件部分被上传'
  53.                 break
  54.             case 4 : 
  55.                 $res['mes'] = '没有选择上传文件'
  56.                 break
  57.             case 6 : 
  58.                 $res['mes'] = '没有找到临时目录'
  59.                 break
  60.             case 7 : 
  61.             case 8 : 
  62.                 $res['mes'] = '系统错误'
  63.                 break
  64.         } 
  65.         return $res
  66.     } 
里面封装了两个小的
  1. function getExt($filename){ 
  2.     return strtolower(pathinfo($filename,PATHINFO_EXTENSION)); 
  3. /** 
  4.  * 产生唯一字符串 
  5.  * @return string 
  6.  */ 
  7. function getUniName(){ 
  8.     return md5(uniqid(microtime(true),true)); 
然后静态中,用multiple属性实现多个文件的输入;
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 
  2. <html> 
  3. <head> 
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 
  5. <title>Insert title here</title> 
  6. </head> 
  7. <body> 
  8. <form action="doAction6.php" method="POST" enctype="multipart/form-data"> 
  9. 请选择您要上传的文件:<input type="file" name="myFile[]" multiple='multiple' /><br/> 
  10. <input type="submit" value="上传"/> 
  11. </form> 
  12. </body> 
  13. </html> 
  1. <?php 
  2. //print_r($_FILES); 
  3. header("content-type:text/html;charset=utf-8"); 
  4. require_once 'upFunc2.php'
  5. require_once 'common.func.php'
  6. $files=getFiles(); 
  7. // print_r($files); 
  8. foreach($files as $fileInfo){ 
  9.     $res=uploadFile($fileInfo); 
  10.     echo $res['mes'],'<br/>'
  11.     $uploadFiles[]=@$res['dest']; 
  12. $uploadFiles=array_values(array_filter($uploadFiles)); 
  13. //print_r($uploadFiles); 

通过以上的几个文件,就能实现比较强大的面向过程的上传文件的功能了。

分享:php按单词截取字符串的方法
这里指定字符串和单词数量进行截取 代码如下:?php function limit_words($string, $word_limit) { $words = explode( ,$string); return implode( ,array_splice($words,0,$word_limit)); } //Example Usage $content = Lorem ipsum dolor sit amet, consectetur adipi

来源:模板无忧//所属分类:PHP教程/更新时间:2017-06-27
相关PHP教程