show/hide this revision's text 5 looking back at this i realized that i had ===, not !== on the strrpos line... also cleaned up the explanation

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"); }

show/hide this revision's text 4 corrected return value check for strrpos

Since it looks like 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: Also, since the file extension will be closer to the end than the beginning, as a minor tweak you could do strrpos instead of strpos. I'd also probably want 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"))
            .$extension") === FALSE)
            return true;

    return false;
}

if (is_image($file) && !file_exists("$thumbsdir/$file")) {
    // do stuff
}

That way, you could easily change the supported image types.

show/hide this revision's text 3 just noticed an unmatched parenthesis!

Since it looks like 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: Also, since the file extension will be closer to the end than the beginning, as a minor tweak you could do strrpos instead of strpos. I'd also probably want 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"))
            return true;

    return false;
}

if (is_image($file) && !file_exists("$thumbsdir/$file") file_exists("$thumbsdir/$file")) {
    // do stuff
}

That way, you could easily change the supported image types.

show/hide this revision's text 2 added 615 characters in body
show/hide this revision's text 1