使用 fpdf 输出表格

发布于 2024-11-19 13:04:42 字数 869 浏览 0 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

甜妞爱困 2024-11-26 13:04:42

这就是适合您的 FPDF。它充满了引发 E_NOTICE 错误的代码。如果您需要继续使用 FPDF,则需要关闭 E_NOTICE。

error_reporting(E_ALL & ~E_NOTICE & ~E_STRICT);

我建议迁移到更新更好的库,例如 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.

error_reporting(E_ALL & ~E_NOTICE & ~E_STRICT);

I'd recommend moving to a newer and better amintained library like TCPDF though.

琉璃梦幻 2024-11-26 13:04:42

我同意楼上的评论。
要么禁用错误,要么更好...修复它们。如果某些内容已经生成,您将无法设置 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文