我正在通过 Apache 服务器显示图像。当我单击每个图像时,它应该打开download.php?fiel=file_name.jpg
并将图像下载到系统。
这是图像显示的代码
<?php
$files = glob("Image/"."*.*");
for ($i=0; $i<count($files); $i++)
{
$num = $files[$i];
echo $num."<br>";
echo '<img src="'.$num.'" alt="Here should be image" width="256" height="192" >'."<br/>";
}
?>
我使用以下代码下载图像(即download.php 文件)。
<?php
$file = $_GET['file'];
header("Content-type: image");
header("Content-disposition: attachment; filename= ".$file."");
readfile($file);
?>
如何做到这一点?