higimo/flip-file-array

flip $_FILES array

1.0.2 2018-10-16 16:55 UTC

This package is auto-updated.

Last update: 2024-09-17 09:40:43 UTC


README

Default $_FILES array:

[
    'upload' => [
        'name' => 'index.html',
        'type' => 'text/html'
    ]
]

convert to:

[
    'name' => [
        'upload' => 'index.html'
    ],
    'type' => [
        'upload' => 'text/html'
    ]
]

Install

composer.bat require higimo/flip-file-array

License

MIT