Skip to content

files in array #136

@gieglas

Description

@gieglas

hi,

I am trying to validate files in an array, for example my HTML looks like this:

<input type="file" name="name[0][avatar]">
<input type="file" name="name[1][avatar]">
<input type="file" name="name[2][avatar]">

Note that the number of avatars is dynamic, the users can add as many avatars as the want.

I tried something like $validation = $validator->validate($_FILES, ['name.*.avatar' => 'required|uploaded_file|max:2M|mimes:jpeg,png']); but doesn't seem to work. Looks like if my file is in an array the way I display above, the uploaded_file validation doesn't seem to work, as if it cannot find the uploaded file.

Any ideas?

Note, i use Slim framework. At first i didnt think $_FILES worked with Slim, but it does.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions