how many files in dir php

Solutions on MaxInterview for how many files in dir php by the best coders in the world

showing results for - "how many files in dir php"
Sofia
01 Jul 2018
1$fi = new FilesystemIterator(__DIR__, FilesystemIterator::SKIP_DOTS);
2printf("There were %d Files", iterator_count($fi));