当前位置:首页 > PHP教程 > php上传下载 > 列表

PHP单文件和多文件上传实例

发布:smiling 来源: PHP粉丝网  添加日期:2021-08-23 10:35:52 浏览: 评论:0 

本篇文章给大家详细分析了PHP实现单文件上传和多文件上传的代码以及问题解决方案,一起学习参考下。

$_FILES何时为空数组?

表单提交 enctype 不等于 multipart/form-data 的时候 php.ini配置文件中,file_uploads = Off 上传的文件大小 > php.ini配置文件中所配置的最大上传大小时

只要出现 $_FILES 为空数组,就可能出现以上的问题,必须修复!

如果 未选择任何文件 就马上点击 “上传按钮”,$_FILES将会是一个有元素的数组,元素中的每个属性都是空字符串,error属性为4

单文件上传

$_FILES 数据结构

  1. array
  2.   'filename' => array
  3.     'name' => 'xxx.png'
  4.     'type' => 'image/png'
  5.     'size' => 2548863, 
  6.     'tmp_name' => '/img/sdsdsd.png'
  7.     'error' => 0 
  8.   ) 

无论是单文件还是多文件上传,都会有5个固定属性:name / size / type / tmp_name / error

多文件上传

相比单文件上传,多文件上传处理起来要复杂多了前端的两种多文件上传形式

  1. //name相同 
  2. <form method="post" enctype="multipart/form-data"> 
  3.   <input type="file" name="wt[]"/> 
  4.   <input type="file" name="wt[]"/> 
  5.   <input type="submit" value="提交"/> 
  6. </form> 
  7.  
  8. //name不同(简单点) 
  9. <form method="post" enctype="multipart/form-data"> 
  10.   <input type="file" name="wt"/> 
  11.   <input type="file" name="mmt"/> 
  12.   <input type="submit" value="提交"/> 
  13. </form> 

后端的 $_FILES 对应的数据结构不同

  1. //name相同 
  2. array (size=1) 
  3.  'wt' =>  
  4.   array (size=5) 
  5.    'name' =>  
  6.     array (size=2) 
  7.      0 => string '新建文本文档 (2).txt' (length=26) 
  8.      1 => string '新建文本文档.txt' (length=22) 
  9.    'type' =>  
  10.     array (size=2) 
  11.      0 => string 'text/plain' (length=10) 
  12.      1 => string 'text/plain' (length=10) 
  13.    'tmp_name' =>  
  14.     array (size=2) 
  15.      0 => string 'C:\Windows\php1D64.tmp' (length=22) 
  16.      1 => string 'C:\Windows\php1D65.tmp' (length=22) 
  17.    'error' =>  
  18.     array (size=2) 
  19.      0 => int 0 
  20.      1 => int 0 
  21.    'size' =>  
  22.     array (size=2) 
  23.      0 => int 0 
  24.      1 => int 1820 
  25.  
  26. //name不同(简单点) 
  27. array (size=2) 
  28.  'wt' =>  
  29.   array (size=5) 
  30.    'name' => string '新建文本文档 (2).txt' (length=26) 
  31.    'type' => string 'text/plain' (length=10) 
  32.    'tmp_name' => string 'C:\Windows\php39C7.tmp' (length=22) 
  33.    'error' => int 0 
  34.    'size' => int 0 
  35.  'mmt' =>  
  36.   array (size=5) 
  37.    'name' => string '新建文本文档.txt' (length=22) 
  38.    'type' => string 'text/plain' (length=10) 
  39.    'tmp_name' => string 'C:\Windows\php39D8.tmp' (length=22) 
  40.    'error' => int 0 
  41.    'size' => int 1820 

字段Error用途

值:1 上传的文件超过了 php.ini 中 upload_max_filesize 选项限制的值。

值:2 上传文件的大小超过了 HTML 表单中 MAX_FILE_SIZE 选项指定的值。

值:3 文件只有部分被上传。

值:4 没有文件被上传。值:5 上传文件大小为0.

Tags: PHP单文件上传 PHP多文件上传

分享到: