0

我正在生成并在一天的脚本图片中显示图片。我有一个当天图片的画廊页面(从目录中提取)。所以我想从目录中提取所有文件以及它何时到达当前日期(这也与文件名 IE 相同。20120822.jpg 是今天显示的内容,20120823.jpg 是明天显示的内容)。我让它循环所有目录图像并将它们显示在画廊中,但我希望循环在当前日期之后停止,这样我们就不会显示或加载未来的图像。这是我的代码..我确定我只是在做一些愚蠢的事情..

 <?PHP
   // filetypes to display
        $imagetypes = array("image/jpeg", "image/gif");
 ?>
 <?PHP

   function getImages($dir)
   {
     global $imagetypes;

    // array to hold return value
     $retval = array();

     // add trailing slash if missing
     if(substr($dir, -1) != "/") $dir .= "/";

     // full server path to directory
     $fulldir = "{$_SERVER['DOCUMENT_ROOT']}/$dir";

     $d = @dir($fulldir) or die("getImages: Failed opening directory $dir for reading");
     while(false !== ($entry = $d->read())) {
       // skip hidden files
       if($entry[0] == ".") continue;

       // check for image files
       $f = escapeshellarg("$fulldir$entry");
       $mimetype = trim(`file -bi $f`);
       foreach($imagetypes as $valid_type) {
         if(preg_match("@^{$valid_type}@", $mimetype)) {
           $retval[] = array(
            'file' => "/$dir$entry",
            'size' => getimagesize("$fulldir$entry")
           );
           break;
         }
       }
     }
     $d->close();

     return $retval;
   }
 ?>

 <?PHP
   // fetch image details
   $images = getImages("galleries/photo-of-the-day/images");
 $today = date("Ymd") . ".jpg";

   // display on page
   sort($images, SORT_REGULAR);
   foreach($images as $img ) {
 if ($img == "20120822.jpg" ) {
  break;
  } else { 
 ?>


 <div style="margin-right: 10px; float: left; margin-bottom: 10px; padding-bottom: 10px; border: 1px #CCCCCC solid;">

 <a href="<? echo $img['file']; ?>" rel="prettyPhoto" title="">

 <img class="image-gals" src="<? echo $img['file']; ?>" style="width: 260px; margin-bottom: 0px;padding: 10px; " /></a>

 <a href="<? echo $img['file']; ?>" style="font-size: 10px; padding: 3px 10px 10px 10px;">Download</a>

 </div>
 <? 
 }
 }
 ?>
4

1 回答 1

0

这是您填充$images数组的地方:

$retval[] = array(
    'file' => "/$dir$entry",
    'size' => getimagesize("$fulldir$entry")
);

但是当你比较它们时,你正在这样做:

foreach($images as $img ) {
    if ($img == "20120822.jpg" ) {

$img将包含一个数组。您需要检查$img['file'],并且其中还包含目录名称,因此它不会仅与图像名称匹配。

于 2012-08-22T19:25:29.373 回答