higimo/flip-file-array

flip $_FILES array

Installs: 10

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/higimo/flip-file-array

1.0.2 2018-10-16 16:55 UTC

This package is auto-updated.

Last update: 2025-10-17 12:16:56 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