$pdf = $this->container->get("white_october.tcpdf")->create('vertical', PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);
$pdf->SetPrintHeader(false);
$pdf->SetPrintFooter(true);
$pdf->setFooterMargin(PDF_MARGIN_FOOTER);
$pdf->SetTitle($category->shortName);
$pdf->setFontSubsetting(true);
$pdf->SetFont('helvetica', '', 11, '', true);
$pdf->SetAutoPageBreak(TRUE, PDF_MARGIN_BOTTOM);
foreach($html as $htm) {
$pdf->AddPage();
$pdf->writeHTML($htm,true,0,true,0);
}
我想为每个页面使用单独的页脚,其中包含特定信息,例如修改了特定内容的用户的名称。我怎么做?我发现的例子是建议覆盖标头函数的示例,由于我直接从symfony容器中获取了TCPDF对象,所以我不能这样做。