firefox每次都會提示下載PDF文件,但Chrome在瀏覽器中顯示PDF時沒有下載提示,但是我需要在任何瀏覽器中顯示PDF而無需下載提示,任何人都可以幫助我?在沒有下載提示的情況下在瀏覽器中查看pdf
這是代碼
$file = 'the_pdf.pdf';
header('Content-type: application/pdf');
header('Content-Disposition: inline; filename="' . $file . '"');
header('Content-Transfer-Encoding: binary');
header('Content-Length: ' . filesize($file));
header('Accept-Ranges: bytes');
@readfile($file);
如果客戶端沒有安裝PDF閱讀器,他們無法查看PDF並且會顯示下載提示。沒什麼可以做的 –