这个简单的代码示例无法在我的网站上运行 . 请查看它并告诉我我的问题 .

<?php

require_once('tcpdf/tcpdf.php');

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

// add a page
$pdf->AddPage();

// create some HTML content
$html='<h1>HTML Example</h1>';

// output the HTML content
$pdf->writeHTML($html, true, false, true, false, '');

// - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

// reset pointer to the last page
$pdf->lastPage();

// ---------------------------------------------------------

//Close and output PDF document
$pdf->Output('example_006.pdf', 'I');
?>