如何按html5
和js
以及php
多重上传图片,请举例或示例?
不使用插件
我在html中尝试此代码并选择了多个图像:
<input type="file" name="upload[]" multiple="multiple">
但我只用一个图像给出了PHP代码:
foreach( $_FILES['upload'] as $key => $all ){
foreach( $all as $i => $val ){
$new[$i][$key] = $val;
}
}
echo '<pre>';
print_r($new);
我该怎么办?
答案 0 :(得分:3)
Plupload是一个非常好的文件上传器
答案 1 :(得分:1)
文件上传,包含多个文件选择,拖放支持,进度条和预览图像。 File Upload Example