当前位置:首页 > PHP文摘 > 列表

php文件上传的两种实现方法

发布:smiling 来源: PHP粉丝网  添加日期:2019-10-10 19:21:22 浏览: 评论:0 

文件上传一般有下面2种方式:

有两种:

1、标准input表单方式,典型的用$_FILES进行接收;

2、以Base64的方式进行传送,一般是AJAX异步上传。

第一种

标准的input表单方式,适用于大文件进行上传,同时支持批量。html代码关键的几句:

  1. <form enctype="multipart/form-data" method="post" action="upload.php" "=""> 
  2.  
  3.   <input type="file" name="id_pic[]" accept="image/*" class="form-control" multiple=""
  4.  
  5.   <input type="submit" value="上传 "
  6.  
  7. </form> 

不同的name时:

  1. <form enctype="multipart/form-data" method="post" action="upload.php" "=""> 
  2.  
  3.   <input type="file" name="id_pic_1" accept="image/*" class="form-control"
  4.  
  5.   <input type="file" name="id_pic_2" accept="image/*" class="form-control"
  6.  
  7.   <input type="submit" value="上传 "
  8.  
  9. </form> 

其中enctype="multipart/form-data"对于文件上传是必不可少的。另外type="file"设置input类型,accept="image/*"指定优先上传图片(MIME 参考手册)。multiple支持一次选多个文件,pic[]以数组的形式接收多个文件。手机端端还可以加入参数capture="camera"选择摄像头拍照上传。

后端处理:

通过$_FILES获取上传的文件。

$files = $_FILES;

传多个文件时,如果name不同,则返回的$_FILES数组格式不同。

name相同时:

  1. array(1) { 
  2.  
  3.  ["id_pic"] => array(5) { 
  4.  
  5.   ["name"] => array(2) { 
  6.  
  7.    [0] => string(5) "1.jpg" 
  8.  
  9.    [1] => string(5) "2.jpg" 
  10.  
  11.   } 
  12.  
  13.   ["type"] => array(2) { 
  14.  
  15.    [0] => string(10) "image/jpeg" 
  16.  
  17.    [1] => string(10) "image/jpeg" 
  18.  
  19.   } 
  20.  
  21.   ["tmp_name"] => array(2) { 
  22.  
  23.    [0] => string(27) "C:\Windows\Temp\php7A7E.tmp" 
  24.  
  25.    [1] => string(27) "C:\Windows\Temp\php7A7F.tmp" 
  26.  
  27.   } 
  28.  
  29.   ["error"] => array(2) { 
  30.  
  31.    [0] => int(0) 
  32.  
  33.    [1] => int(0) 
  34.  
  35.   } 
  36.  
  37.   ["size"] => array(2) { 
  38.  
  39.    [0] => int(77357) 
  40.  
  41.    [1] => int(56720) 
  42.  
  43.   } 
  44.  
  45.  } 
  46.  

name不相同时:

  1. array(2) { 
  2.  
  3.  ["id_pic_1"] => array(5) { 
  4.  
  5.   ["name"] => string(5) "1.jpg" 
  6.  
  7.   ["type"] => string(10) "image/jpeg" 
  8.  
  9.   ["tmp_name"] => string(27) "C:\Windows\Temp\phpBBEE.tmp" 
  10.  
  11.   ["error"] => int(0) 
  12.  
  13.   ["size"] => int(77357) 
  14.  
  15.  } 
  16.  
  17.  ["id_pic_2"] => array(5) { 
  18.  
  19.   ["name"] => string(5) "2.jpg" 
  20.  
  21.   ["type"] => string(10) "image/jpeg" 
  22.  
  23.   ["tmp_name"] => string(27) "C:\Windows\Temp\phpBBEF.tmp" 
  24.  
  25.   ["error"] => int(0) 
  26.  
  27.   ["size"] => int(56720) 
  28.  
  29.  } 
  30.  

在对$_FILES进行foreach遍历时,前面那种输出格式不大方便。后面那种就可以直接遍历。我们可以写个方法进行统一转换:

  1. function dealFiles($files) { 
  2.  
  3.     $fileArray = array(); 
  4.  
  5.     $n     = 0; 
  6.  
  7.     foreach ($files as $key=>$file){ 
  8.  
  9.       if(is_array($file['name'])) { 
  10.  
  11.         $keys    =  array_keys($file); 
  12.  
  13.         $count   =  count($file['name']); 
  14.  
  15.         for ($i=0; $i<$count$i++) { 
  16.  
  17.           $fileArray[$n]['key'] = $key
  18.  
  19.           foreach ($keys as $_key){ 
  20.  
  21.             $fileArray[$n][$_key] = $file[$_key][$i]; 
  22.  
  23.           } 
  24.  
  25.           $n++; 
  26.  
  27.         } 
  28.  
  29.       }else
  30. //phpfensi.com 
  31.         $fileArray = $files
  32.  
  33.         break
  34.  
  35.       } 
  36.  
  37.     } 
  38.  
  39.     return $fileArray
  40.  
  41.  } 

好,前面讲到后端如何处理接收到的$_FILES数组,并转换成统一格式。接下来任务主要是:

1、检测上传的文件是否非法;

2、检测上传的文件是否超过大小;

3、检测保存的路径是否存在,是否可写;

4、文件重命名;

其中上传过程中用到了个很重要的函数:move_uploaded_file(filename , $destination )进行文件移动操作。将$_FILES['id_pic']['tmp_name']移动到新的路径里。当然,移动前可以用is_uploaded_file($_FILES['id_pic']['tmp_name'])进行判断文件是否正常上传的。

多文件上传则是循环的方法多次使用move_uploaded_file()进行移动操作。

第二种

主要以上传图片为主。

利用input的change事件,借助canvas对图片进行处理(例如压缩),然后ajax发送文件流到后端。

基本原理是通过canvas渲染图片,再通过 toDataURL 方法压缩保存为base64字符串(能够编译为jpg格式的图片)。

后端处理:

后端最终会收到前端发送的base64字符串,接着处理字符串为图片即可。具体请使用关键字base64 转 image 开发语言进行谷歌|百度。前端生成的结果中有一个base64Len,这是字符串的长度,后端应该核对以确认是否提交完整。

  1. //php示例: 
  2.  
  3. $img = base64_decode($_POST['img']); 
  4.  
  5. $img = imagecreatefromstring($img); 

以上就是本文的全部内容,希望对大家的学习有所帮助。

Tags: php文件上传

分享到: