Mpdf 出错并且不输出 pdf

问题描述 投票:0回答:3

我正在使用 Mpdf,它在本地运行良好,我遇到的问题是 pdf 不会输出并且只是出现空白屏幕

这是错误

致命错误:未捕获Mpdf\MpdfException:数据已发送到输出(第14行的/customers/3/c/2/includes/header.php),无法在/customers/3/c/2中输出PDF文件/pdf/vendor/mpdf/mpdf/src/Mpdf.php:9510 堆栈跟踪:#0 /customers/3/c/2: Mpdf\Mpdf->Output('sold.pdf', 'I') #1 /customers/3/c/2/include('/customers/3/c/...') #2 {main} 抛出/customers/3/c/2/pdf/vendor/mpdf/mpdf/src/Mpdf.php 在线 9510

我尝试过的一些事情,编码在 UTF 而不是 DOM 下是正确的,我没有空格,一切似乎都很好

这是标题代码

<?php
        session_start();
            if(empty($_SESSION['user_id']))
                {
                header("Location: https://www.home.co.uk");
                }
        require '../dbcon/database.php'; 
        $db = DB();
        require '../lib/library.php'; 
        $app = new WIDGET();
        require '../lib/carbon.php';
        $user = $app->UserDetails($_SESSION['user_id']); 
        ?>

我也尝试过

<?php
        session_start();
        require '../dbcon/database.php'; 
        $db = DB();
        require '../lib/library.php'; 
        $app = new WIDGET();
        require '../lib/carbon.php';
        $user = $app->UserDetails($_SESSION['user_id']); 
        ?>

这没有什么区别。

这是Mdpf.php第9510行的代码

case Destination::INLINE:

            if (headers_sent($filename, $line)) {
                throw new \Mpdf\MpdfException(
                    sprintf('Data has already been sent to output (%s at line %s), unable to output PDF file', $filename, $line)
                );
            }

就像提到的,我得到的只是一个空白页面,如果我输出到 iframe,它就可以正常工作。 在 127.0.0.1 上运行良好

非常感谢任何帮助,并提前感谢任何帮助

更新:

抱歉忘记提及或显示调用 pdf 的代码。

我已经尝试过 ob_clean() 但仍然不行

require_once 'pdf/vendor/autoload.php';
    if(ob_get_length() > 0) {
    ob_clean();
    }
    $mpdf = new \Mpdf\Mpdf();   
    $html ='<html>
    <body>
    <h2 style="font-size: 120px; text-align:center;">SOLD</h2>
    <h2 style="font-size: 50px; text-transform: uppercase; text-align:center;">'.   $row->widget_model .'</h2>
    <h2 style="font-size: 50px; text-transform: uppercase; text-align:center;">'. $row->widget_serial .'</h2><br>
    <h2 style="font-size: 30px; text-transform: uppercase; text-align:center;">Delivery Date: '. (new DateTime($_POST['expdelivery']))->format('d-m-Y') .'</h2>
    <br>
    <h2 style="font-size: 20px; text-align:center;">Contact: '. $_POST['name'] .'</h2>
    </body>
     </html>';
     $mpdf->WriteHTML($html);
     $mpdf->Output('sold.pdf','I');
     ob_end_flush();
     }

编辑2:-

查看网络选项卡,它只显示所有 js 调用和 favicon.ico

它还显示此页面 updatewidget.php?id=2178

<?php
        $page_title = "Widget Tracker - Amend Widget"; 
        $page = ''; 
        include "includes/header.php";
        include "includes/sidebar.php";
            $id = isset($_GET['id']) ? $_GET['id'] : NULL;
            $sth = $db->prepare("SELECT *  FROM `widgettracker` WHERE `id` = :id");
            $sth->bindParam(':id', $id, PDO::PARAM_INT);
            $sth->setFetchMode(PDO::FETCH_OBJ);
            $sth->execute(); 
            $row = $sth->fetch();
            ?>
            <section class="content">
                <div class="container-fluid">
               <?php
                    if($row->widgetstatus == "Sold") 
            {include "sold.php";}
            else
            {include "widgetdetails.php";}
            ?>
            </div>
            </section>
        <?php
        include "includes/footer.php";
        include "includes/customjs.php";
        ?>

包含 Mpdf 的页面是“widgetdetails.php”,我需要插入销售日期并更新并生成 pdf。然后就报错了

php mpdf
3个回答
0
投票

头文件中结束

?>
后可能会有空行或换行符。尝试从实际上没有输出任何内容的 php 文件中删除结束的
?>


0
投票

您需要检查开发者控制台中的网络选项卡。您应该能够看到服务器返回的原始数据,这应该向您显示它在到达 mpdf 代码之前发送的任何数据。


0
投票

是什么导致了我这个错误:

  1. 使用 mPDF 实例之前的任何 echo、print 或 var_dump 语句。
  2. mPDF 开始处理之前显示错误消息或警告。

既然您看到错误,那么您就有可能显示错误和警告。把它关掉

© www.soinside.com 2019 - 2024. All rights reserved.