Possible Duplicate:
PHP list of specific files in a directory
use php scandir($dir) and get only images!
So right now I have a directory and I am getting a list of files
$dir_f = "whatever/random/";
$files = scandir($dir_f);
That, however, retrieves every file in a directory. How would I retrive only files with a certain extension such as .ini in most efficient way.

scandir– Korvin Szanto Sep 30 '12 at 19:55globwould be a better choice thanscandir. – Francois Deschenes Sep 30 '12 at 19:56glob("*.txt")– Michael Berkowski Sep 30 '12 at 20:20