0

我想做一个画廊。我必须文件夹,一个带有小图像的缩略图和一个带有大图像的灯箱。我想将缩略图链接到大图像。我怎么做。我找到了以下脚本,并粘贴了一个我想让它看起来像的脚本(问题是它不能那样工作)。

我通常不使用 PHP 编码,这就是我问的原因,我想有一种方法可以将链接保存在数组中。

我发现的 PHP

<?php 
  foreach(glob('./images/small/*.*') as $file_small){
    echo "<img src='".$file_small."' />";
  }
?>

我想要的 PHP

 <?php 
      foreach(glob('./images/small/*.*') as $file_small and glob('./images/big/*.*') as $file_big){
        echo "<a href='".$file_big."'><img src='".$file_small."' /></a>";
      }
    ?>
4

1 回答 1

1

使用phpThumb http://phpthumb.sourceforge.net/生成缩略图并使用这样的 php 代码:

<?php 
  foreach(glob('./images/big/*.*') as $file_big){
    echo "<a href='".$file_big."'><img src='phpThumb/phpThumb.php?src=../".$file_big."' /></a>";
  }
?>
于 2013-07-21T11:04:07.750 回答