无法打印 pdf (MPDF)

unable to print pdf (MPDF)

我正在尝试使用 Mpdf 工具将我的内容打印成 PDF。该代码在 localhost 中工作,但是当我在服务器中使用相同的代码时,它无法正常工作,给出了一些 eroor "mPDF error: Some data has already been output to browser, can't send PDF file".

我的代码是:

<?php




    $address = "banglore rt nagar";

    $template_data  = " hello this is test ##ADDRESS## adress";

    $template_data = str_replace('##ADDRESS##', $address , $template_data);


   ob_end_clean(); 

   include 'MPDF57/mpdf.php';



       $mpdf=error_reporting(E_STRICT);
       $mpdf=new mPDF('win-1252','A4','','',15,10,16,10,10,10);
       $mpdf->Bookmark('Start of the document');
       $mpdf->SetDisplayMode('fullpage');
       $mpdf->WriteHTML($template_data);
       $mpdf->Output();

       exit();


       ?>

我已经尝试了很多解决方案。但没有什么效果。有帮助吗?

使用ob_start();在 <?php 标签之后。希望对你有帮助。

更多ohttp://php.net/manual/en/function.ob-start.php