TCPDF Multiple Footers
问题 I am using TCPDF to generate PDF documents. The problem I have is that I am trying to add a different footer per page. Apparently, TCPDF provides a solution only for a single footer. Each footer contains only basic html code without any styling. Any ideas? 回答1: You can turn of the default footer like this: $pdf->SetPrintFooter(false); create your own one like this: $footer = 'yau man footer stuff'; and then create your own footer function: public function _footer($input) { $text = $input;