Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 PHP Pear 电子表格 Excel 编写器中设置合并单元格的边框?
我们可以在合并的单元格上 writeBlank 并应用您的预定义格式。
例如
$format = [Define your format over here] $worksheet->writeString( 0, 1, "some Text", $format); $worksheet->writeBlank( 0, 2, $format); $worksheet->setMerge(0,1,0,2);