input[type="file"] multiple怎么上传啊?
程序员文章站
2022-03-29 19:42:00
...
<input type="file" name="some-img">
表单提交到服务器,就是$_FILES["some-img"]
那要是
<input type="file" name="some-img[]" multiple>
传到后台改怎么写啊?
后台是PHP
回复内容:
<input type="file" name="some-img">
表单提交到服务器,就是$_FILES["some-img"]
那要是
<input type="file" name="some-img[]" multiple>
传到后台改怎么写啊?
后台是PHP
HTML:
<input name="upload[]" type="file" multiple="multiple" />
PHP:
// Count # of uploaded files in array $total = count($_FILES['upload']['name']); // Loop through each file for($i=0; $i<$total; $i++) { //Get the temp file path $tmpFilePath = $_FILES['upload']['tmp_name'][$i]; //Make sure we have a filepath if ($tmpFilePath != ""){ //Setup our new file path $newFilePath = "./uploadFiles/" . $_FILES['upload']['name'][$i]; //Upload the file into the temp dir if(move_uploaded_file($tmpFilePath, $newFilePath)) { //Handle other code here } } }
var_dump($_FLIE);
把变量打印出来看看结构就知道怎么接受了
推荐阅读
-
vue中使用input[type="file"]实现文件上传功能
-
vue中使用input[type="file"]实现文件上传功能
-
input(type='file')上传多张照片并显示,传到后台
-
移动端 input type=‘file‘ 自定义样式、多图表单上传 及 踩坑 大总结
-
的值怎么初始化?">
javascript - 上传文件的值怎么初始化?
-
js 实现 input type="file" 文件上传示例代码
-
手机网站如何上传图片?为什么input type='file'控件在windons phone 下面根本出不来文件选框?
-
form表单中要提交的input为type="button"时怎么提交啊?_html/css_WEB-ITnose
-
手机网站如何上传图片?为什么input type='file'控件在windons phone 下面根本出不来文件选框?
-
处理同一页面中借助form+input[type="file"]上传图片出现的input无法清空问题_html/css_WEB-ITnose