Is there any way to get only images (jpeg,png&gif) while using:
$dir = '/tmp';
$files1 = scandir($dir);
|
feedback
|
|
You can use
If you need this to be case-insensitive, you could use a | |||||||||||
feedback
|
|
You can search the resulting array afterward and discard files not matching your criteria.
| |||
|
feedback
|
|
I would loop through the files and look at their extensions:
| |||
|
feedback
|