我正在使用mdpf将php文件输出到pdf文件。问题是我有一个包含它根本不输出文件。当我拿出包含它有效时,然而,当我把它重新插入时,它只是直接进入浏览器。
以下是代码:
<?php
session_start();
require('mpdf.php');
$mpdf=new mPDF();
ob_start();
$id = $_POST['tempId'];
$_SESSION = $id
include('report-gen.php');
$html = ob_get_contents();
ob_end_clean();
$mpdf = new mPDF();
$mpdf->WriteHTML($html);
$mpdf->debug = true;
$fileName = $id.'.pdf';
//$mpdf->SetProtection(array(), 'user', 'password'); uncomment to protect your pdf page with password.
$mpdf->Output($fileName,'D');
exit;
?>
谢谢....
答案 0 :(得分:0)
解决了..导致问题的是包含文件。它现在正在运作。