我试图在浏览器中显示pdf并使用此代码来完成工作
<?php
$pdf = 'uploads/docs/' . $list->filename;
// dd($pdf);
header('Content-type: application/pdf');
header('Content-Disposition: inline; filename="' . $pdf . '"');
header('Content-Transfer-Encoding: binary');
header('Content-Length: ' . filesize($pdf));
header('Accept-Ranges: bytes');
@readfile($pdf);
exit;
?>
它正在工作,但我有一个问题有时它不显示1-2页pdf文件任何想法我做错了什么?任何建议?感谢