Answers for "check how many files are in a folder php"

PHP
5

how many files in dir php

$fi = new FilesystemIterator(__DIR__, FilesystemIterator::SKIP_DOTS);
printf("There were %d Files", iterator_count($fi));
Posted by: Guest on May-07-2020

Code answers related to "check how many files are in a folder php"

Browse Popular Code Answers by Language