I need to list all files (which have certain extensions) in a folder and its sub-folders. I used RecursiveIteratorIterator as described in @Matthew 's great answer in PHP list all files in directory.
And one last thing: displaying a file-tree, or maybe all directories that have no sub-directories, are both examples of things that one might want to do when dealing with files. How would you recommend to pass this data to the client side and how would the data structure look like?
$filename
in that answer is actually not a string. It is an object of type SplFileInfo
which can be used like a string but it also offers much more detailed info:
SplFileInfo::getFilename()
-- filename.SplFileInfo::getPathname()
-- path to the fileSplFileInfo::getPathInfo()
-- SplFileInfo object for the pathSplFileInfo::getRealPath()
-- canonicalized absolute pathname; see realpath()
for more info and the difference to Pathname,