php图片下载详解编程语言

直接用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;  
    }

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/20411.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论