连接代码:<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;
时间: 2024-11-08 10:18:24