higimo/flip-file-array

翻转 $_FILES 数组

1.0.2 2018-10-16 16:55 UTC

This package is auto-updated.

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


README

默认 $_FILES 数组

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

转换为

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

安装

composer.bat require higimo/flip-file-array

许可证

MIT