我在使用插件phpword時遇到了問題。我試圖改變風格,但我可以改變單元格的背景,並考慮其他參數。如何更改PHPWord上的styleTable?
$styleTable = array('borderColor'=>'006699',
'borderSize'=>6,
'cellMargin'=>50,
'valign'=>'center'
);
$styleFirstRow = array('bgColor'=>'6086B8',
'color'=>'white',
'bold'=>true,
'size'=>11,
'valign'=>'center'
);
$PHPWord->addTableStyle('myTable', $styleTable, $styleFirstRow);
如果你想看看我的代碼,他是在這裏:http://pastebin.com/pw36n3aW
謝謝你的錯誤,但它不是來自那裏。 我有以前出現的背景顏色。 – Lunix