我正在编写一个程序,从网站上提取信息并显示它。结果页面显示了一个缩略图图像网格,可以点击同一图像的大(原始)版本:
<?php
for ($x=0; $x < $imgCount; $x++) {
echo '<a class="thumbnail-link" href="' . $finalImageArray[$x] . '">';
echo $imgs[$x];
echo '</a>';
}
?>
$imgCount is the number of thumbnail images
$imgs --> Array of <img src="http://www.example.com/path/to/each/thumbnail-img.jpg" />
$finalImageArray --> Array of http://www.example.com/path/to/original/large-img.jpg
现在,我点击缩略图到大图像,然后右键单击“将图像另存为”。我想知道是否可以简化此过程,因此单击缩略图会触发下载较大的图像。