我的php脚本生成一个包含TCPDF的多页文档:
foreach($data as $dataRow) {
// ....
$this->WriteHTMLCell(...);
$this->AddPage();
}
$this->Output(...);
这完美无缺。但现在我必须分别存储每一页。换句话说:每个foreach迭代必须将当前页面存储为单个pdf文件。这可能吗?
答案 0 :(得分:0)
将$this->Output(...);
函数移到foreach函数中。
foreach($data as $dataRow)
{
// ....
$this->WriteHTMLCell(...);
$this->AddPage();
$this->Output(...);
}
答案 1 :(得分:0)
每个交互的文档输出方法:
$page=1;
foreach($data as $dataRow) {
// ....
$this->WriteHTMLCell(...);
$this->Output("document-page-".$page,"I");
$page++;
}