PHP: How to count files in folder?
In this post we will give you information about PHP: How to count files in folder?. Hear we will give you detail about PHP: How to count files in folder?And how to use it also give you demo for it if it is necessary.
In PHP, you are work on php and you want to need display count number of files in specific folder then you do, glob() through you count number of file are there in specified folder. now in following example you can see “/var/www/test” in this folder, count how many files are there in that folder. glob function take a two argument first one for directory or folder path and second argument for filter. Filter means if you pass ‘*’ then it will count all type of file, i mean all extension, but if you need to count just text file then you can put like ‘*.txt’.
That’t it, if in your directory, function does not find any file then it will always return “false”. you can check following example and try that…
Example:
$folderPath = '/var/www/test';
$file = glob($folderPath . '*');
$countFile = 0;
if ($file != false)
{
$countFile = count($file);
}
print_r($countFile);
Hope this code and post will helped you for implement PHP: How to count files in folder?. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs