在做图片下载站时,常常需要给用户下载图片,但图片浏览器是直接可以打开的.怎么办呢,有没有什么方法可以让图片类型的文件弹出下载框下载呢,当然是有的,PHP的header函数就可以提供这种方法
以下代码你可以copy下来测式一下
<?PHP
$filename = "123.jpg";//图片地址,可以绝对地址也可以相对地址
header("Content-Type: application/force-download");
header('Content-Disposition: attachment; filename="'.$filename.'"');
$img = file_get_contents($filename);
echo $img;
/*** 来自编程之家 jb51.cc(jb51.cc) ***/
关键点在于
header("Content-Type: application/force-download"); header('Content-Disposition: attachment; filename="'.$filename.'"');
这二行代码,让告诉浏览器强制下载文件 原文链接:https://www.f2er.com/php/528113.html