使用 fpdf 输出表格
我正在尝试使用 FPDF 和 PHP 输出表格。
我需要的是输出表格标题,并且我有一个学说(symfony)集合。
我正在使用 writeHTML
方法:
$pdf->writeHTML('<table>','','','','');
$pdf->writeHTML('<tr><th>Tooth Selection</th><th>Requirements</th><th>Shade</th><th>Cost</th></tr>','','','','');
$order_items = $this->order_details->getIncludedItemsOrders();
foreach($order_items as $item)
{
$pdf->writeHTML('<tr><td>Test1</td><td>Test2</td><td>Test3</td><td>test4</td></tr>', '','');
}
$pdf->writeHTML('</table>');
但我收到错误,例如:
Notice: Undefined index: cols in
Notice: Undefined variable: cellspacingx in
我这样做是否正确,因为我找不到有关使用 foreach
输出表的太多信息
感谢
I am trying to output a table using FPDF
and PHP.
What I need is to output the table headings and I have a doctrine (symfony) collection.
I'm using the writeHTML
method using:
$pdf->writeHTML('<table>','','','','');
$pdf->writeHTML('<tr><th>Tooth Selection</th><th>Requirements</th><th>Shade</th><th>Cost</th></tr>','','','','');
$order_items = $this->order_details->getIncludedItemsOrders();
foreach($order_items as $item)
{
$pdf->writeHTML('<tr><td>Test1</td><td>Test2</td><td>Test3</td><td>test4</td></tr>', '','');
}
$pdf->writeHTML('</table>');
But I get errors, such as:
Notice: Undefined index: cols in
Notice: Undefined variable: cellspacingx in
Am I doing this correct as I can't find much information regarding outputting tables using a foreach
Thank
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这就是适合您的 FPDF。它充满了引发 E_NOTICE 错误的代码。如果您需要继续使用 FPDF,则需要关闭 E_NOTICE。
我建议迁移到更新更好的库,例如 TCPDF 。
That's FPDF for you. It's full of code that raises E_NOTICE errors. If you need to stay with FPDF, you need to turn E_NOTICE off.
I'd recommend moving to a newer and better amintained library like TCPDF though.
我同意楼上的评论。
要么禁用错误,要么更好...修复它们。如果某些内容已经生成,您将无法设置 pdf 标题。不过您仍然可以将 pdf 保存到文件中。
我有自己的 fpdf 表脚本: http://interpid.eu/fpdf-table
I agree with the upper comment.
Either disable the errors or even better... FIX them. If some content is already generated you will not be able to set the pdf headers. Though you can still save the pdf to a file.
I have my own fpdf table script: http://interpid.eu/fpdf-table