我正在尝试创建一个表PHPWord
,该表应该是这样的:一些行包含 2 个单元格,一些行包含 4 个单元格
------------------------
| | |
|-----------------------
| | |
------------------------
| | | | |
|-----------------------
这是我的代码的一部分
$table->addRow(200);
$table->addCell(2000, $styleTitleCell)->addText(htmlspecialchars('text'), $fontTitle);
$table->addCell(15000, $styleCell)->addText(htmlspecialchars('textVULN'), $fontTitle);
$table->addRow(600);
$table->addCell(2000, $styleTitleCell)->addText(htmlspecialchars('Référence'), $fontTitle);
$table->addCell(15000, $styleCell)->addText(htmlspecialchars(' text'), $fontStyle);
$table->addRow(600);
$table->addCell(2000, $styleTitleCell)->addText(htmlspecialchars('text'), $fontTitle);
$table->addCell(15000, $styleCell)->addText(htmlspecialchars('constats ici'), $fontStyle);
$table->addRow(600);
$table->addCell(2000, $styleTitleCell)->addText(htmlspecialchars('text'), $fontTitle);
$table->addCell(15000, $styleCell)->addText(htmlspecialchars('text'), $fontStyle);
//elements impactés
$table->addRow(600);
$table->addCell(2000, $styleTitleCell)->addText(htmlspecialchars('Eléments impactés'), $fontTitle);
$table->addCell(15000, $styleCell)->addText(htmlspecialchars('Les elements ici'), $fontStyle);
$table->addRow(600);
$table->addCell(2000, $styleTitleCell)->addText(htmlspecialchars('text'), $fontTitle);
$table->addCell(15000, $styleCell)->addText(htmlspecialchars('text'), $fontStyle);
$table->addRow(600);
$table->addCell(2000, $styleTitleCell)->addText(htmlspecialchars('text'), $fontTitle);
$table->addCell(2000, $styleCell)->addText(htmlspecialchars('text'), $fontStyle);
$table->addCell(2000, $styleTitleCell)->addText(htmlspecialchars('text'), $fontTitle);
$table->addCell(2000, $styleCell)->addText(htmlspecialchars('text'), $fontStyle);
这就是我得到的:
----------------------
| | |
|---------------------------------
| | | | |
----------------------------------