注意 不能直接使用
$table->addCell(2000)->addText('培训内容'.($i+1),$fontStyle);
要使用 addListItem 这个属性
$table = $section->addTable($styleTable); $head = $DataOutput->head; if ($head) { for ($i = 0; $i < count($head); $i++) { $h1 = ''; $table->addRow(); $table->addCell(2000)->addText('培训内容'.($i+1),$fontStyle); $cell = $table->addCell(8000); $data= $head[$i]->cj; if($data){ $dataarr = $this->object_array($data); $t=$head[$i]->ID; $sot[$t]=($i+1); foreach ($dataarr as $key=>$value) $cell->addListItem($key.'<w:br/>',0,array('bold'=>true)); $h1.= $key.'<w:br/>' ;