检查PHP中是否存在缩略图



我的目录结构是这样的。

 ...photo-album1/
 ...photo-album1/thumbnails/

假设我们在photo-album1/里面有image1.jpg。此文件的缩略图为tn_image1.jpg

我想做的是检查photo-album1/中的每个文件是否在photo-album1/thumbnails/中有缩略图。如果他们只是继续,如果没有,将文件名发送到另一个函数:generateThumb()

我该怎么做?

<?php
$dir = "/path/to/photo-album1";
// Open directory, and proceed to read its contents
if (is_dir($dir)) {
  if ($dh = opendir($dir)) {
    // Walk through directory, $file by $file
    while (($file = readdir($dh)) !== false) {
      // Make sure we're dealing with jpegs
      if (preg_match('/.jpg$/i', $file)) {
        // don't bother processing things that already have thumbnails
        if (!file_exists($dir . "thumbnails/tn_" . $file)) {
          // your code to build a thumbnail goes here
        }
      }
    }
    // clean up after ourselves
    closedir($dh);
  }
}
$dir = '/my_directory_location';
$files = scandir($dir);//or use 
$files =glob($dir);
foreach($files as $ind_file){
if (file_exists($ind_file)) {
    echo "The file $filexists exists";
    } else {
    echo "The file $filexists does not exist";
    }
} 

简单的方法是使用PHP的glob函数:

$path = '../photo-album1/*.jpg';
$files = glob($path);
foreach ($files as $file) {
   if (file_exists($file)) {
      echo "File $file exists.";
   } else {
      echo "File $file does not exist.";
   }
}

基本功要归功于灵魂。我只是在添加glob。

EDIT:正如hakre所指出的,glob只返回现有文件,因此您只需检查文件名是否在数组中就可以加快速度。类似于:

if (in_array($file, $files)) echo "File exists.";

相关内容

  • 没有找到相关文章

最新更新