我正在尝试强制下载 php。从这里: http ://www.iwantanimage.com/animals/animals01.html 。单击英镑图像,下一页提供三种格式的选项。
这是我的 php 代码
<?php
header('Content-disposition: attachment; filename=sterling02md.jpg');
header('Content-type: image.jpg');
readfile('sterling02md.jpg');
header('Content-disposition: attachment; filename=sterling02lg.jpg');
header('Content-type: image.jpg');
readfile('sterling02lg.jpg');
header('Content-disposition: attachment; filename=sterling.jpg');
header('Content-type: image.jpg');
readfile('sterling02.jpg');
?>
然而,唯一下载的图像是 sterling02md.jpg。如何修复代码以便用户可以下载选择的文件?谢谢你