我目前正在尝试通过表单生成pdf,我希望将用户数据传递给生成的pdf。但正如我发现并阅读了有关 FPDF 的信息,除了 FPDF 类的作用之外,它无法生成其他东西。所以这是我的问题:
如何在生成的 pdf 中实现/使用不同的数据?
我尝试了以下方法(在单元格中使用会话变量):
require 'fpdf17/fpdf.php';
class PDF extends FPDF
{
function Header() {
$this->setFont("Arial", '', 32);
$this->Image('pics/invoiceLogo.png', 5,5,50);
$this->ln(25);
$this->setTextColor(0,0,0);
$this->setFont("Arial", '', 8);
$this->cell(100, 4, $_SESSION['firstname'] , 0, 0, 'L');
}
...
顺便说一句,我遇到了错误:
FPDF 错误:一些数据已经输出,无法发送 PDF 文件