I have a form that has some fields like this:
<input type="file" name="images[]" />
<input type="file" name="images[]" />
<input type="file" name="images[]" />
<input type="file" name="images[]" />
I would expect i would do something like this:
Array
(
[images] => Array
(
[0] => Array
(
[name] => test.jpg
[type] => image/jpeg
[tmp_name] => /tmp/nsl54Gs
[error] => 0
[size] => 1715
)
[1] => Array
(
[name] => test.jpg
[type] => image/jpeg
[tmp_name] => /tmp/nsl54Gs
[error] => 0
[size] => 1715
)
[2] => Array
(
[name] => test.jpg
[type] => image/jpeg
[tmp_name] => /tmp/nsl54Gs
[error] => 0
[size] => 1715
)
[3] => Array
(
[name] => test.jpg
[type] => image/jpeg
[tmp_name] => /tmp/nsl54Gs
[error] => 0
[size] => 1715
)
)
)
But i get something like this:
Array
(
[images] => Array
(
[name] => Array
(
[0] => test.jpg
[1] => test.jpg
[2] => test.jpg
[3] => test.jpg
)
[type] => Array
(
[0] => image/jpeg
[1] => image/jpeg
[2] => image/jpeg
[3] => image/jpeg
)
[tmp_name] => Array
(
[0] => /tmp/nsl54Gs
[1] => /tmp/nsl54Gs
[2] => /tmp/nsl54Gs
[3] => /tmp/nsl54Gs
)
[error] => Array
(
[0] => 0
[1] => 0
[2] => 0
[3] => 0
)
[size] => Array
(
[0] => 1715
[1] => 1715
[2] => 1715
[3] => 1715
)
)
)
How do I get the array in the form I expect?
This is completely normal format, it always has been like that. If you want a different structure, you can transform it in your application, like this:
Good luck!
Here is a function that does that and works with name attributes as:
Also works with more than one file field:
PHP:
You don't need to, you can easily work with this structure: