PDF文件下载的正确PHP头
当用户点击链接时,我真的很难让我的应用程序打开pdf。
到目前为止,锚点标记重定向到一个页面,该页面发送的标头是:
$filename='./pdf/jobs/pdffile.pdf;
$url_download = BASE_URL . RELATIVE_PATH . $filename;
header("Content-type:application/pdf");
header("Content-Disposition:inline;filename='$filename");
readfile("downloaded.pdf");
这似乎不起作用,过去有人成功解决这个问题吗?