how to count number of uploaded files in php
Solution 1
In this code you are getting only one file thats why you are getting count result 1. if change your input file name like "file[]"
<input type="file" name="file[]" id="file" multiple />
and then use the below line code you will get your desire result. Cause its needs an array filed to hold the input data.
<?php echo count($_FILES['file']['name']); ?>
Thanks, i tried in my system get the result.
Solution 2
AFriend is correct. The above answers always return 1.
Try:
echo count(array_filter($_FILES['file']['name']))
Worked for me anyway.
_t
Solution 3
Using the array_filter
function it works
try
$countfiles = count(array_filter($_FILES['file']['name']));
It returns 0 in case of NULL, 1 in case of 1 file uploaded, etc.
Solution 4
Check this answer
<?php echo count($_FILES['file']['name']); ?>
Related videos on Youtube

Jack Maessen
I am just an ordinary swiminstructor in the Netherlands, but my hobby is creating websites and writing simple backend-scripts in PHP for websites. I like to learn about PHP and jQuery and try to share my knowledge with other people
Updated on June 14, 2022Comments
-
Jack Maessen 3 months
How can i count the number of uploaded files? This is my form:
<div id="dragAndDropFiles" class="uploadArea"> <h1>Drop Images Here</h1> </div> <form id="sfmFiler" class="sfmform" method="post" enctype="multipart/form-data"> <input type="file" name="file" id="file" multiple /> <input type="submit" name="submitHandler" id="submitHandler" class="buttonUpload" value="Upload"> </form>
and this is the piece of php which uploads the files:
if($_SERVER['REQUEST_METHOD'] == "POST") { $tmpFilePath = $_FILES['file']['tmp_name']; $newFilePath = $dir.'/' . $_FILES['file']['name']; if(move_uploaded_file($tmpFilePath, $newFilePath)) { echo "xxx files are successfully uploaded"; } }
-
Murad Hasan over 6 yearstry this:
count($_FILES['file']['name'])
-
Saty over 6 yearsNeed array in file name as
name="file[]"
-
-
Murad Hasan over 6 yearsif you answer than make it clear. the op needs complete support. carry on.
-
A Friend over 4 yearsI could be wrong on this but count will always be 1 or greater unless the the paramter is NULL, so even if no files were uploaded count() would still equal 1