如何使用包含多个rowspan和colspan的PHPWord在word中创建表?

时间:2016-06-30 13:11:51

标签: php phpword

我一直在为学术项目学习PHPWord,而且我还有最新的PHPWord库,支持rowspan的“vMerge”和colspan的“gridSpan”。

我一直难以创建一种特定类型的表结构,如下图所示。

enter image description here

问题如何为'1','2'和'6'设置相同的行数,在这种情况下它等于2.

任何形式的帮助都将受到赞赏。

edit-1 我已经成功完成了基本的rowpan和colspan,但我发现这个复杂的表很难。

1 个答案:

答案 0 :(得分:9)

示例中有一个与您正在做的非常接近的示例:https://github.com/PHPOffice/PHPWord/blob/develop/samples/Sample_09_Tables.php

并修改一下以实现你的例子:

$cellRowSpan = array('vMerge' => 'restart');
$cellRowContinue = array('vMerge' => 'continue');
$cellColSpan = array('gridSpan' => 2);

$table->addRow();
$table->addCell(2000, $cellRowSpan)->addText("1");
$table->addCell(2000, $cellRowSpan)->addText("2");
$table->addCell(4000, $cellColSpan)->addText("3");
$table->addCell(2000, $cellRowSpan)->addText("6");

$table->addRow();
$table->addCell(null, $cellRowContinue);
$table->addCell(null, $cellRowContinue);
$table->addCell(2000)->addText("4");
$table->addCell(2000)->addText("5");
$table->addCell(null, $cellRowContinue);

$table->addRow();
$table->addCell(2000);
$table->addCell(2000);
$table->addCell(2000);
$table->addCell(2000);
$table->addCell(2000);

使用0.13.0版测试(出于某种原因,libreoffice不喜欢带有vMerge的两个adjecent单元继续定义并且没有按预期显示它们,但是单词确实按照预期显示它们很好)