PHPOffice/PhpSpreadsheet: 重置单元格样式
PHPOffice/PhpSpreadsheet: Reset cell style
在文档中
- https://phpspreadsheet.readthedocs.io/en/develop/
- https://phpoffice.github.io/PhpSpreadsheet/master/PhpOffice.html
我没有找到任何有用的功能来满足我的需要。
是否可以"reset" / "delete the entire formatting" 单个单元格? Return 单元格恢复到原始状态。
明确撤消以前的格式应该可行:
$ws->getStyle('A1')->applyFromArray(array(
'font' => array('bold' => false)
));
导入时,也可以完全跳过格式:$reader->setReadDataOnly(true);
在文档中
- https://phpspreadsheet.readthedocs.io/en/develop/
- https://phpoffice.github.io/PhpSpreadsheet/master/PhpOffice.html
我没有找到任何有用的功能来满足我的需要。
是否可以"reset" / "delete the entire formatting" 单个单元格? Return 单元格恢复到原始状态。
明确撤消以前的格式应该可行:
$ws->getStyle('A1')->applyFromArray(array(
'font' => array('bold' => false)
));
导入时,也可以完全跳过格式:$reader->setReadDataOnly(true);