I\'m reading all the files in a single directory and I want to filter on JPG,JPEG,GIF and PNG.
Both capital and small letters. Those are the only files to be accepte
How about using glob() instead?
$files = glob($dir . '*.{jpg,gif,png,jpeg}',GLOB_BRACE);