Since it looks like
I'd extract the file_exists == false test "is done for each of the three cases, I'd do this:
if (strpos($file, '.jpg', 1) || strpos($file, '.gif', 1) || strpos($file, '.png', 1)){
if (!file_exists("$thumbsdir/$file")) {
createThumb(...);
fwrite(...);
}
}
EDIT:
Alsoan image" logic into its own function, since the file extension will be closer to the end than which makes the beginning, as a minor tweak you could do strrpos instead of strpos. I'd if more readable and also probably want allows you to centralize the "is an image" logic:.
function is_image($filename) {
$image_extensions = array('png', 'gif', 'jpg');
foreach ($image_extensions as $extension)
if (strrpos($filename, ".$extension") =!== FALSE)
return true;
return false;
}
if (is_image($file) && !file_exists("$thumbsdir/$file")) {
// do stuff
}
That waycreateThumb("$gallerydir/$file", you could easily change the supported image types."$thumbsdir/$file",$thumbsize); fwrite($log,date("Y-m-d")." @ ".date("H:i:s")." CREATED: $thumbsdir/$file\n"); }
