gpt4 book ai didi

php - 在浏览器中查看 pdf 文件而不是下载

转载 作者:可可西里 更新时间:2023-10-31 23:07:55 26 4
gpt4 key购买 nike

header("Content-Length: " . filesize ('theme/assets/pdf/ci.pdf' ) ); 
header("Content-type: application/pdf");
header("Content-disposition: attachment;
filename=".basename('theme/assets/pdf/ci.pdf'));
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
$filepath = readfile('theme/assets/pdf/ci.pdf');

嗨, friend 们,我有这种类型的代码。我的要求是我必须在浏览器中显示加载的 pdf(在浏览器中打开 pdf),但现在 pdf 已下载到硬盘。相反,我想在浏览器中查看文件。

最佳答案

您需要将Content-disposition 更改为inline

改变

header("Content-disposition: attachment;     
filename=".basename('theme/assets/pdf/ci.pdf'));

收件人:

header("Content-disposition: inline;     
filename=".basename('theme/assets/pdf/ci.pdf'));

关于php - 在浏览器中查看 pdf 文件而不是下载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34891513/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com