how many files in dir php

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

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
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));