Slide 4
Slide 4 text
Problemi u
starom načinu
obrade
[
'files' => [
0 => [
'name' => 'file0.txt',
'type' => 'text/plain',
],
1 => [
'name' => 'file1.html',
'type' => 'text/html',
],
],
];
[
'files' => [
'name' => [
0 => 'file0.txt',
1 => 'file1.html',
],
'type' => [
0 => 'text/plain,
1 => 'text/html',
],
],
];
Nelogično
Logično
4