码迷,mamicode.com
首页 > Web开发 > 详细

【转】php让图片弹出下载框的方法

时间:2017-09-12 12:18:27      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:targe   osi   lan   图片浏览   height   pos   nts   rac   技术分享   

在做图片下载站时,常常需要给用户下载图片,但图片浏览器是直接可以打开的.怎么办呢,有没有什么方法可以让图片类型的文件弹出下载框下载呢, phperz.com

当然是有的,php的header函数就可以提供这种方法 php程序员之家

以下代码你可以copy下来测式一下 www.phperz.com

 

以下为引用的内容:
<?php
$filename = "123.jpg";//图片地址,可以绝对地址也可以相对地址
header("Content-Type: application/force-download");
header(‘Content-Disposition: attachment; filename="‘.$filename.‘"‘);
$img = file_get_contents($filename); 
echo $img;
?>

www.phperz.com

 

效果如下: www.phperz.com

技术分享www.phperz.com

关键点在于 php程序员之家

header("Content-Type: application/force-download");
header(‘Content-Disposition: attachment; filename="‘.$filename.‘"‘);

phperz~com

 

 

 

 

这二行代码,让告诉浏览器强制下载文件

 

转载至:phpzer

 
 

【转】php让图片弹出下载框的方法

标签:targe   osi   lan   图片浏览   height   pos   nts   rac   技术分享   

原文地址:http://www.cnblogs.com/php48/p/7509086.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!