Is there any way to get only images (jpeg,png&gif) while using:

$dir    = '/tmp';
$files1 = scandir($dir);
link|improve this question

feedback

3 Answers

up vote 8 down vote accepted

You can use glob

$images = glob('/tmp/*.{jpeg,gif,png}', GLOB_BRACE);

If you need this to be case-insensitive, you could use a DirectoryIterator in combination with a RegexIterator or pass the result of scandir to array_map and use a callback that filters any unwanted extensions. If you use strpos, fnmatch or pathinfo to get the extension is up to you.

link|improve this answer
1  
That... doesn't use scandir() anymore. But is otherwise correct. So shouldn't that be "no, with glob"? – Borealid Jul 12 '10 at 7:22
@Borealid nitpicker :D – Gordon Jul 12 '10 at 7:24
Now make it case insensitive. >:) – salathe Jul 12 '10 at 8:15
@salathe evil hearted you!! :P – Gordon Jul 12 '10 at 8:43
feedback

You can search the resulting array afterward and discard files not matching your criteria.

scandir does not have the functionality you seek.

link|improve this answer
feedback

I would loop through the files and look at their extensions:

$dir = '/tmp'
$dh  = opendir($dir);
while (false !== ($filename = readdir($dh))) {
    $ext = substr($fileName, strrpos($fileName, '.') + 1);
    if(in_array($ext, array("jpg","jpeg","png","gif"))
        $files1[] = $filename;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.