0

我正在使用 DomPDF 在我正在处理的项目中生成发票。我以前做过几次,从来没有遇到过任何麻烦,但是从今天开始它变得如此缓慢以至于达到了最大执行时间。我已经确认发生这种情况的原因是:$dompdf->render() 我正在生成一些表格来显示数据。但似乎发现这个表格非常困难。有谁知道可能是什么问题?

dompdf 和我的表可以找到:http ://pastebin.com/G585VQma (我想我会把它放在 pastebin 上以节省一些空间)

4

1 回答 1

0

dompdf doesn't support splitting table cells through pages, so you need to change the tables with cellspacing="10" into block elements like divs with the same styling, or at least not put the tables with many lines inside of these tables.

于 2011-10-03T19:34:24.070 回答