在我的PHHWORD单元格中,我想在左侧显示一堆文本,在右侧显示一幅图像。要清楚:所有这些都在一个细胞中
wanted situation,这是我目前的结果 current situation
这是我使用的代码
$cell = $id->addCell(1750);
$textrun = $cell->createTextRun();
$textrun->addImage('uploads/'. $filename,array('width'=>100,
'marginTop' => -1,
'marginRight' => 0,
'wrappingStyle' => 'inline'
));
$textrun->addText("Lorem ipsum dolor sit ...... ");