我的表单中包含以下输入代码:
<input name="photos" type="file" multiple>
在我的控制器类中处理表单输入: -
$photos = Input::file('photos');
$count = count($photos);
我正在使用count()方法来确定表单是否正在发送多个文件。 当我选择6
时,count方法的返回值为“1”答案 0 :(得分:1)
通过更改输入名称解决: -
<input name="photos" type="file" multiple>
要:
<input name="photos[]" type="file" multiple>