Skip to content

Instantly share code, notes, and snippets.

@Bat-Chat
Last active January 7, 2016 14:55
Show Gist options
  • Save Bat-Chat/dbead0b3692e2505fcd6 to your computer and use it in GitHub Desktop.
Save Bat-Chat/dbead0b3692e2505fcd6 to your computer and use it in GitHub Desktop.
Get count of files in directory
<?php
$dir = new DirectoryIterator('/directoryPath/');
$count = 0;
foreach($dir as $file) {
$count += ($file->isFile()) ? 1 : 0;
}
print_r($count);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment