<?php
$files = [
‘name‘ => [
0 => ‘1.gif‘,
1 => ‘1.gif‘,
2 => ‘1.gif‘,
],
‘type‘ => [
0 => ‘image/gif‘,
1 => ‘image/gif‘,
2 => ‘image/gif‘,
],
];
$files = [
[‘name‘ => ‘1.gif‘,‘type‘ => ‘image/gif‘],
[‘name‘ => ‘1.gif‘,‘type‘ => ‘image/gif‘],
[‘name‘ => ‘1.gif‘,‘type‘ => ‘image/gif‘],
];