使用php在浏览器中显示pdf的不一致

时间:2016-05-20 03:39:03

标签: php pdf

我试图在浏览器中显示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文件任何想法我做错了什么?任何建议?感谢

0 个答案:

没有答案