vote up 5 vote down star
1

What's the best way to format this for readability?

if (strpos($file, '.jpg',1) && file_exists("$thumbsdir/$file") == false || strpos($file, '.gif',1) && file_exists("$thumbsdir/$file") == false || strpos($file, '.png',1) && file_exists("$thumbsdir/$file") == false) {
  createThumb("$gallerydir/$file", "$thumbsdir/$file",$thumbsize);
  fwrite($log,date("Y-m-d")." @ ".date("H:i:s")."  CREATED: $thumbsdir/$file\n");
}
flag

8 Answers

vote up 16 vote down check

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") === 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.

link|flag
Above and beyond what I asked, thanks for the help! – PHLAK Oct 20 '08 at 8:27
vote up 3 vote down
if ((strpos($file, '.jpg',1) ||
     strpos($file, '.gif',1) ||
     strpos($file, '.png',1))
    && file_exists("$thumbsdir/$file") == false)
{
  createThumb("$gallerydir/$file", "$thumbsdir/$file",$thumbsize);
  fwrite($log,date("Y-m-d")." @ ".date("H:i:s")."  CREATED: $thumbsdir/$file\n");
}
link|flag
is there a particular reason to put the || ORs on the end of the line and the && ANDs at the start? – nickf Oct 20 '08 at 13:12
@nickf: If I had to guess, it has to do with not mixing up the parens, but definitely does more harm than good. – eyelidlessness Oct 25 '08 at 8:52
vote up 2 vote down

I would seperate the ifs as there is some repeating code in there. Also I try to exit a routine as early as possible:

if (!strpos($file, '.jpg',1) && !strpos($file, '.gif',1) && !strpos($file, '.png',1))
{
    return;
}

if(file_exists("$thumbsdir/$file"))
{
    return;
}

createThumb("$gallerydir/$file", "$thumbsdir/$file",$thumbsize);
fwrite($log,date("Y-m-d")." @ ".date("H:i:s")."  CREATED: $thumbsdir/$file\n");
link|flag
I agree with exiting a routine ASAP, I think I'll do that. – PHLAK Oct 20 '08 at 7:40
vote up 2 vote down

The file_exists check seems to be constant for each of the file types, so don't compare them unless the file_exists check has been passed.

if (file_exists("$thumbsdir/$file") == false)
{
   if(strpos($file, '.jpg',1) ||
     strpos($file, '.gif',1) ||
     strpos($file, '.png',1)
   {
     createThumb("$gallerydir/$file", "$thumbsdir/$file",$thumbsize);
     fwrite($log,date("Y-m-d")." @ ".date("H:i:s")."  CREATED: $thumbsdir/$file\n");
   }
}
link|flag
Wouldn't you want to do it the other way around because file_exists would be more expensive? – Neil Williams Oct 20 '08 at 7:30
@Neil: It would depend on how often the tests failed. I doubt the strpos() tests will fail often, so they won't cut down on the number of tests against file_exists(). However, the file_exists() test will fail whenver a thumbnail has already been generated, skipping the filename tests. – John Millikin Oct 20 '08 at 7:34
vote up 1 vote down

I would break it up like this, setting aside the redundancy issue:

if (strpos($file, '.jpg',1) && file_exists("$thumbsdir/$file") == false
 || strpos($file, '.gif',1) && file_exists("$thumbsdir/$file") == false
 || strpos($file, '.png',1) && file_exists("$thumbsdir/$file") == false) {
  createThumb("$gallerydir/$file", "$thumbsdir/$file",$thumbsize);
  fwrite($log,date("Y-m-d")." @ ".date("H:i:s")."  CREATED: $thumbsdir/$file\n");
}

@Fire Lancer's answer addresses the redundancy well.

link|flag
+1 for the simple answer I was originally looking for. – PHLAK Oct 20 '08 at 8:26
vote up 1 vote down
function check_thumbnail($file)
{
    return (strpos($file, '.jpg',1) && file_exists("$thumbsdir/$file") == false ||
            strpos($file, '.gif',1) && file_exists("$thumbsdir/$file") == false ||
            strpos($file, '.png',1) && file_exists("$thumbsdir/$file") == false);
}

if (check_thumbnail ($file)) {
  createThumb("$gallerydir/$file", "$thumbsdir/$file",$thumbsize);
  fwrite($log,date("Y-m-d")." @ ".date("H:i:s")."  CREATED: $thumbsdir/$file\n");
}

After extracting the logic to a separate function, you can reduce the duplication:

function check_thumbnail($file)
{
    return (strpos($file, '.jpg',1) ||
            strpos($file, '.gif',1) ||
            strpos($file, '.png',1)) &&
           (file_exists("$thumbsdir/$file") == false);
}
link|flag
check_thumbnail is not a good name - does a return value of true mean it exists or does not exist? Maybe is_existing_thumbnail() or non_existent_thumbnail() would be a better name - the former requires inverting the logic, of course. – Jonathan Leffler Oct 20 '08 at 7:36
vote up 1 vote down

I find the following to be more readable using getimagesize(). I'm writing this off the top of my head so it may require some debugging.

Vertical code is more readable than horizontal, imho.

// Extract image info if possible
    // Note: Error suppression is for missing file or non-image
if (@$imageInfo = getimagesize("{$thumbsdir}/{$file}")) {

	// Accept the following image types
	$acceptTypes = array(
		IMAGETYPE_JPEG,
		IMAGETYPE_GIF,
		IMAGETYPE_PNG,
	);

	// Proceed if image format is acceptable
	if (in_array($imageInfo[2], $acceptTypes)) {

		//createThumb(...);
		//fwrite(...);

	}

}

Peace + happy hacking.

link|flag
vote up 1 vote down

Might as well throw my two cents in.

if(!file_exists($thumbsdir . '/' . $file) && preg_match('/\.(?:jpe?g|png|gif)$/', $file)) {
    createThumb($gallerydir . '/' . $file, $thumbsdir . '/' . $file, $thumbsize);
    fwrite($log, date('Y-m-d @ H:i:s') . '  CREATED: ' . $thumbsdir . '/' . $file . "\n");
}
link|flag

Your Answer

Get an OpenID
or

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