Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道网页是否可以生成一个按钮,让用户可以下载图像并直接保存到他们移动设备的照片库中?预计不会打开另一个只显示图像的网页,而是让他们将图像包下载到手机中。我真的可以这样做吗?
是的,使用 phpheader包含Content-Disposition告诉浏览器下载为文件。
header
Content-Disposition
header('Content-Type: image/png'); header('Content-Disposition: attachment; filename="downloaded.png"');
(以 PNG 为例)
例如,用户将单击 download-photo.php,该脚本将传递这些标头,它还需要获取图像的文件内容并作为响应的有效负载包含在内。