$_FILES何时为空数组?
表单提交 enctype 不等于 multipart/form-data 的时候 PHP.ini配置文件中,file_uploads = Off 上传的文件大小 > PHP.ini配置文件中所配置的最大上传大小时
只要出现 $_FILES 为空数组,就可能出现以上的问题,必须修复!
如果 未选择任何文件 就马上点击 “上传按钮”,$_FILES将会是一个有元素的数组,元素中的每个属性都是空字符串,error属性为4
单文件上传
$_FILES 数据结构
无论是单文件
还是多文件上传
,都会有5个固定属性:name / size / type / tmp_name / error
多文件上传
相比单文件上传,多文件上传处理起来要复杂多了前端的两种多文件上传形式
//name不同(简单点)
<form method="post" enctype="multipart/form-data">
<input type="file" name="wt"/>
<input type="file" name="mmt"/>
<input type="submit" value="提交"/>
后端的 $_FILES
对应的数据结构不同
//name不同(简单点)
array (size=2)
'wt' =>
array (size=5)
'name' => string '新建文本文档 (2).txt' (length=26)
'type' => string 'text/plain' (length=10)
'tmp_name' => string 'C:\Windows\PHP39C7.tmp' (length=22)
'error' => int 0
'size' => int 0
'mmt' =>
array (size=5)
'name' => string '新建文本文档.txt' (length=22)
'type' => string 'text/plain' (length=10)
'tmp_name' => string 'C:\Windows\PHP39D8.tmp' (length=22)
'error' => int 0
'size' => int 1820
字段Error用途
值:1 上传的文件超过了 PHP.ini 中 upload_max_filesize 选项限制的值。
原文链接:https://www.f2er.com/php/16491.html