PHPWord如何在表格单元格内打破文本?

时间:2016-08-23 13:41:59

标签: php phpword

我目前有很大的困难,可以将一些文本正确放入桌子的单元格内。

我希望文本是这样的:
“从计算机分析 计算机名“

它在单元格内显示如下: “从计算机公司名称分析”

这是我目前的代码:

$table = $section->addTable('myTable');

$table->addRow(300);
$table->addCell(4000)->addImage('logo_sat.png',array ('width'=>100,'align'=>'center'));
$table->addCell(6400, $styleVertical)->addText("Analyse from computer \n $computername", $styleFirstHeader, $styleCenter);
$table->addCell(4000, $styleVertical)->addText("SAT" , $styleFirstHeader, $styleCenter);
$table->addRow(30);
$table->addCell(4000, $styleVertical)->addText("ADR $chantier_code/$analyse_id" , $styleFirstHeader, $styleCenter);
$table->addCell(5200, $styleVertical)->addText("Indice : $indice  Date : $analyse_datemaj " , $styleFirstHeader, $styleCenter);
$table->addCell(5200, $styleVertical)->addText("Page : " , $styleFirstHeader, $styleCenter);

我见过$section->addTextBreak([$breakCount], [$fontStyle], [$paragraphStyle]); 在文档中,但它似乎与表格单元格不兼容。

知道我们如何才能做到这一点吗?

0 个答案:

没有答案