美文网首页
HTTP的header控制浏览器打开或者下载文件

HTTP的header控制浏览器打开或者下载文件

作者: xuweiqiang | 来源:发表于2019-07-25 10:18 被阅读0次

1、php输出文件时候,浏览器下载该文件

$file = "./a.png";
header('Content-Disposition:attachment; filename=1.png');
echo file_get_contents($file);

2、PHP输出图片,浏览器中直接打开图片

$file = "./a.png";
header('Content-type:image/png');
echo file_get_contents($file);

3、PHP输出pdf,浏览器直接打开pdf

$file = "wangshili.pdf";
header('Content-Type:application/pdf');
echo file_get_contents($file);

相关文章

网友评论

      本文标题:HTTP的header控制浏览器打开或者下载文件

      本文链接:https://www.haomeiwen.com/subject/wwscrctx.html