Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 PHPPresentation 合并表格中的单元格,但我找不到任何方法可以做到这一点,我该怎么做?提前致谢。
这个问题比较老,但答案可以帮助其他人。要使用 PHPPresentation 合并单元格,我们可以依靠以下方法:
Cell 类的 setRowSpan() 和 setColSpan()。
例子:
$cell = $row->nextCell(); $cell->setColSpan(3);