мы все знаем, что в массиве first element is stored in 0 th index, 2nd in 1st index......nth in (n-1)th index
теперь вы не можете взять count($_FILES['something'])
, который всегда будет возвращать 5, поскольку в массиве есть 5 ключей
.$_FILES['something']['name'][0]
содержит? => имя первого загруженного файла
, поэтому отметьте как
if(empty($_FILES['something']['name'][0]))
{
//checking whether a single file uploaded or not
//if enters here means no file uploaded
//so if you want you may put a check/validation here to make file
//upload a must in your website
}
if(isset($_FILES['something']['name'][5]))
{
//checking whether 6 files uploaded or not
//so here you can put a check/validation to restrict user from
//uploading more than 5 files
}