$file = 'd:/1.pdf';
$filename = '1.pdf';
header('Content-type: application/pdf');
header('Content-Disposition: inline; filename="'.$filename.'"');
header('Content-Transfer-Encoding: binary');
header('Accept-Ranges: bytes');
@readfile($file);
但是tp5 打开PDF出现满屏乱码。
搜索‘thinkphp5加载tcpdf生成pdf’得到启示
结尾加上exit() 语句,就能解决
最佳答案
