php图片下载

Posted 逆水行舟,不进则退

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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; 
    }

 

以上是关于php图片下载的主要内容,如果未能解决你的问题,请参考以下文章

PHP必用代码片段

PHP代码-psysh调试代码片段工具

超实用的php代码片段

比较有用的php代码片段

php Yoast SEO规范输出的代码片段

php Yoast SEO规范输出的代码片段