How to list a directory in PHP and only show ZIP files
I wanted to list a directory in PHP. At the same time, I wanted to make sure only files are listed – not subdirectories or dot directories. More specifically, I only wanted to include files with the ending .zip. Two tools come to the rescue here: scandir() to list the directory and give us an … Read more