当前位置:  开发笔记 > 编程语言 > 正文

PHP使用标题下载图像

如何解决《PHP使用标题下载图像》经验,为你挑选了1个好方法。



1> KhorneHoly..:

您只是错过了实际提供的图像流,应该下载该图像流。

您可以简单地回显$ image,而无需为其打开文件流,因为您可以正确设置标题。

public function ExportUserImage()
    {
        $image = $this->user->image;

        header("Content-type: image/jpeg");  
        header("Cache-Control: no-store, no-cache");  
        header('Content-Disposition: attachment; filename="avatar.jpg"');
        echo $image;

    }

推荐阅读
手机用户2402851155
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有