pdf下载html2pdf

Pra*_*lal 2 php pdf download html2pdf

我正在使用html2pdf类生成pdf.在我的问题中它为html代码生成pdf但它没有给出对话框选项来下载该pdf.请帮助我的cose跟随.

<?php
ob_start();
include(dirname(__FILE__).'/res/pdf_demo.php');
$content = ob_get_clean();

// conversion HTML => PDF
require_once(dirname(__FILE__).'/../html2pdf.class.php');
try
{
    $html2pdf = new HTML2PDF('P','A4', 'fr', false, 'ISO-8859-15');
    $html2pdf->pdf->SetDisplayMode('fullpage');
    $html2pdf->writeHTML($content, isset($_GET['vuehtml']));
    $html2pdf->Output('pdf_demo.pdf'); 
}
catch(HTML2PDF_exception $e) { echo $e; }
?>
Run Code Online (Sandbox Code Playgroud)

giu*_*ppe 9

从文档,方法输出

    /**
     * Send the document to a given destination: string, local file or browser.
     * Dest can be :
     *  I : send the file inline to the browser (default). The plug-in is used if available. The name given by name is used when one selects the "Save as" option on the link generating the PDF.
     *  D : send to the browser and force a file download with the name given by name.
     *  F : save to a local server file with the name given by name.
     *  S : return the document as a string. name is ignored.
     *  FI: equivalent to F + I option
     *  FD: equivalent to F + D option
     *  true  => I
     *  false => S
     *
Run Code Online (Sandbox Code Playgroud)


kro*_*eva 8

将此行更改$html2pdf->Output('pdf_demo.pdf');$html2pdf->Output('pdf_demo.pdf', 'D');,将强制浏览器自动下载pdf文件.