当前位置:Gxlcms > PHP教程 > php下载图片解决方案

php下载图片解决方案

时间:2021-07-01 10:21:17 帮助过:42人阅读

php下载图片
现在我在页面上做一个按钮,只要用户一点,我在后台用php下载指定的图片到用户的电脑上,怎么实现这个功能,不要下载到服务器上,而是直接将我直接下载图片下载到用户电脑上
------解决思路----------------------

下載圖片


download.php

$file = '1.jpg';
if(file_exists($file)){
header('content-type:application/octet-stream');
header('content-disposition:attachment; filename='.basename($file));
header('content-length:'.filesize($file));
readfile($file);
}
?>

人气教程排行