如何使用tcpdf下载html表

时间:2014-09-05 11:26:03

标签: php tcpdf

我有一个页面需要使用tcpdf下载。以下是我写的代码,但它只显示了零。

这是我写的代码:

<?php

require_once('tcpdf.php');


include('simple_html_dom.php');

$filename = '10r6.php';

$ptemplate = file_get_contents($filename);

$pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);

$pdf->SetCreator(PDF_CREATOR);
$pdf->SetAuthor('AD');
$pdf->SetTitle('TCPDF Example 002');
$pdf->SetSubject('TCPDF Tutorial');
$pdf->SetKeywords('TCPDF, PDF, example, test, guide');

$pdf->setPrintHeader(false);
$pdf->setPrintFooter(false);

$pdf->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED);

$pdf->SetMargins(PDF_MARGIN_LEFT, PDF_MARGIN_TOP, PDF_MARGIN_RIGHT);

$pdf->SetAutoPageBreak(TRUE, PDF_MARGIN_BOTTOM);

$pdf->setImageScale(PDF_IMAGE_SCALE_RATIO);

if (@file_exists(dirname(__FILE__).'/lang/eng.php')) {
    require_once(dirname(__FILE__).'/lang/eng.php');
    $pdf->setLanguageArray($l);
}

$pdf->SetFont('times', 'BI', 20);

$pdf->AddPage();

$html = <<<EOD

$ptemplate

EOD;

$pdf->writeHTML(0, 0, '', '', $html, 0, 1, 0, true, '', true);

$pdf->Output('example_002.pdf', 'I');

?>

任何人都可以帮助我。

2 个答案:

答案 0 :(得分:0)

使用此命令将html代码输出到pdf文件。

$pdf->writeHTML($html, true, 0, true, true, '');

我注意到你使用了类似的东西,但你似乎没有为$ html变量分配任何东西。您需要将整个html代码放入该变量中,以便将其输出到pdf文件。所以,如果(我假设)您的html代码是'simple_html_dom.php'(您将其包含在代码的顶部),只需执行以下操作:

$html = include('simple_html_dom.php');
$pdf->writeHTML($html, true, 0, true, true, '');

我希望它有所帮助,我昨天在TCPDF上也很难过,但经过一整天的努力,我设法让一切顺利。

答案 1 :(得分:0)

您的参数不正确。

$pdf->writeHTML($html, 0, '', '', false, 0, 1, 0, true, '', true);

the docs开始,参数为;

TCPDF::writeHTML(
    $html,
    $ln = true,
    $fill = false,
    $reseth = false,
    $cell = false,
    $align = '' 
)