Debugging with the form of downloading files

Use code hhtml form to upload files
<p><input type="file" name="image[]" multiple accept="image/*,image/jpeg" required>
as in the debugger specify multiple files for download?

I’d imagine that should work, only remember that an array index starts at 0, not 1.

Does not work. Index “1” is missing. It all really - what I want to do?

Array
(
    [image] => Array
        (
             [name] => Array(
                    [0] => 1.JPG
                    )

            [type] => Array (
                    [0] => 
                )

            [tmp_name] => Array
                (
                    [0] => 
                )
            [error] => Array (
                    [0] => 3
                )
            [size] => Array (
                    [0] => 0
                )
        )
)

I don’t quite understand what you’re saying - can you rephrase?

Do not get me simulate load multiple files in the debugger. If I point the array image [0], image [1], the image [1] is missing. And I basically want to debug code when I download a lot of files.