html5
怎么可以通过andjs
和and多上传图片php
,请给我一个demo或者例子?
不使用插件
我尝试在 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);
我该怎么办?