phpコードは簡単な画像のダウンロードを実現します
1437 ワード
:
<a href="test.php?url=test/images/image_01.jpg"> </a>
test.php :
$filename = $_GET['url'];// ,
header("Content-Type: application/force-download");
header('Content-Disposition: attachment; filename="'.$filename.'"'); // 、
$img = file_get_contents($filename);
echo $img;