HTML多输入文件仅发送一个输入

时间:2017-11-04 14:07:06

标签: php html forms laravel input

我的表单中包含以下输入代码:

<input name="photos" type="file"  multiple>

在我的控制器类中处理表单输入: -

$photos = Input::file('photos');
        $count = count($photos);

我正在使用count()方法来确定表单是否正在发送多个文件。 当我选择6

时,count方法的返回值为“1”

enter image description here

1 个答案:

答案 0 :(得分:1)

通过更改输入名称解决: -

<input name="photos" type="file"  multiple>

要:

<input name="photos[]" type="file"  multiple>