How to Count Number of Files in a Directory in PHP?
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 1:
index.php
<?php
$folderPath = '/folderName';
$file = glob($folderPath . '*');
$countFile = 0;
if ($file != false){
$countFile = count($file);
}
print_r($countFile);
?>
Output:
10
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- How to Check Current PHP Version in Ubuntu?
- PHP nl2br() Function Example Tutorial
- PHP Google Recaptcha V2 Example Tutorial
- PHP implode() Function Example Tutorial
- How to Convert Array to String in PHP?
- PHP - How to Remove Blank Pages from PDF File?
- How to Install PHP in Ubuntu Server?
- How to Get Month Name from Date in PHP?
- PHP Subtract Seconds from Time Example
- How to Subtract Minutes from DateTime in PHP?
- PHP Subtract Year from Date Example
- How to Find Day Name from Specific Date in PHP?
- How to Remove Null Values from Array in PHP?