首页 > Web开发 > 详细

php图片下载

时间:2016-06-02 23:29:16      阅读:317      评论:0      收藏:0      [点我收藏+]

直接用url会在浏览器中打开图片,

想直接弹出保存框,可以用下面方法

下面的$dir指的是图片在服务器的绝对地址

function iDownload(){

        $name=$_GET[‘name‘]; //获取图片地址$file = fopen($dir,"r"); // 打开文件   
        $dir=‘/www/image/‘;$ext=strrchr($name,"."); 
        
        if($ext!=".gif" && $ext!=".jpg" && $ext!=".png") 
            return false; 

        $file_path=$dir.$name;
        $size=filesize($file_path);
        $file = fopen($file_path,"r") or die("file is not exist");; // 打开文件  
        
        Header("Content-type: application/octet-stream"); 
        Header("Accept-Ranges: bytes"); 
        Header("Accept-Length: ".$size); 
        Header("Content-Disposition: attachment; filename=" . $name); 
        echo fread($file,$size); 
        fclose($file); 
        exit; 
    }

 

php图片下载

原文:http://www.cnblogs.com/baby123/p/5554522.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!