我正在尝试上传多个文件。但似乎只有最后一个文件通过了post请求。问题是什么?
这是我的视图文件
<form role="form" method="post" action="/storeProduct" enctype="multipart/form-data">
{!! csrf_field() !!}
<div class="form-group">
<label>Upload image</label>
<input type="file" id="files" name="file[]" multiple>
<output id="list"></output>
</div>
<div class="col-md-12" style="text-align: center">
<button type="submit" class="btn btn-primary">Add</button>
</div>
</form>
和控制器
public function store(Request $request){
$count = count($_FILES['file']['name']);
echo $count;
} 无论我上传多少文件,计数总是变为1