当用户点击一个链接时,我真的很难让我的应用程序打开一个 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");
这似乎不起作用,过去有人成功解决过这个问题吗?