如何在 TCPDF 中添加脚注?

How to add footnotes in TCDPF?

我正在使用 TCPDF 库,我想添加脚注。

我如何从代码中做到这一点? 有 "shortcut" 还是我应该只编辑 Footer() 函数?

您应该使用页脚功能,例如:

class PDF extends TCPDF {
    public function Footer() {
        $this->Cell(0, 10, 'Some footer text');
    }
}