Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
<input type='file' name='imageUPL[]' multiple>
$imagesUPL = $_FILES['imagesUPL']; $count = count($imagesUPL); var_dump($count);
array(5) { ["name"]=> array(2) { [0]=> string(15) "8cVn4rzUR9c.jpg" [1]=> string(36) "695b2473b72bd62d1e858b7f1e019b6d.jpg" } ["type"]=> array(2) { [0]=> string(10) "image/jpeg" [1]=> string(10) "image/jpeg" } ["tmp_name"]=> array(2) { [0]=> string(14) "/tmp/phpOt1NYx" [1]=> string(14) "/tmp/phpWYtD8m" } ["error"]=> array(2) { [0]=> int(0) [1]=> int(0) } ["size"]=> array(2) { [0]=> int(203330) [1]=> int(32965) } }
["name"]=> array(2)
count($_FILES['imagesUPL']['name'])
The sizeof() function is an alias of the count() function.