我想将样式信息从单元格复制到范围,例如Excel中的Format Painter.文档说要做这样的事情:
$activeSheet->duplicateStyle($activeSheet->getStyle('A1'), 'D1:D100');
$activeSheet->duplicateStyle($activeSheet->getStyle('B1'), 'E1:E100');
Run Code Online (Sandbox Code Playgroud)
似乎有一个错误,因为D1:D100和E1:E100都从单元格B1获得样式.如果我改变两条线的顺序,两个范围都从A1获得样式.同样的,
$styleA = $activeSheet->getStyle('A1');
$styleB = $activeSheet->getStyle('B1');
$activeSheet->duplicateStyle($styleA, 'D1:D100');
Run Code Online (Sandbox Code Playgroud)
得到D1:D100从单元格B1获取样式信息.最后一个getStyle值用于所有duplicateStyle结果.
我确信PHPExcel的未来版本将有一个修复,我只需要找到一个解决方法,直到那时.
Mar*_*ker 13
一个workround for you可能是使用样式xf索引:
$xfIndex = $activeSheet->getCell('A1')->getXfIndex();
Run Code Online (Sandbox Code Playgroud)
然后为该范围内所有单元格的xfIndex设置该值
for ($col = 'D'; $col != 'E'; ++$col) {
for ($row = 1; $row <= 100; ++$row) {
$activeSheet->getCell($col . $row)->setXfIndex($xfIndex);
}
}
Run Code Online (Sandbox Code Playgroud)
编辑
或者,将修复应用于Classes/PHPExcel/Worksheet.php中的duplicateStyle()方法
目前阅读第1479至1486行:
if ($this->_parent->cellXfExists($pCellStyle)) {
// there is already this cell Xf in our collection
$xfIndex = $pCellStyle->getIndex();
} else {
// we don't have such a cell Xf, need to add
$workbook->addCellXf($pCellStyle);
$xfIndex = $pCellStyle->getIndex();
}
Run Code Online (Sandbox Code Playgroud)
改成:
if ($existingStyle = $this->_parent->getCellXfByHashCode($pCellStyle->getHashCode())) {
// there is already such cell Xf in our collection
$xfIndex = $existingStyle->getIndex();
} else {
// we don't have such a cell Xf, need to add
$workbook->addCellXf($pCellStyle);
$xfIndex = $pCellStyle->getIndex();
}
Run Code Online (Sandbox Code Playgroud)
类似地在Classes/PHPExcel/Style.php中的applyFromArray()方法中
第425至432行目前已阅读:
if ($workbook->cellXfExists($newStyle)) {
// there is already such cell Xf in our collection
$newXfIndexes[$oldXfIndex] = $existingStyle->getIndex();
} else {
// we don't have such a cell Xf, need to add
$workbook->addCellXf($newStyle);
$newXfIndexes[$oldXfIndex] = $newStyle->getIndex();
}
Run Code Online (Sandbox Code Playgroud)
改成:
if ($existingStyle = $workbook->getCellXfByHashCode($newStyle->getHashCode())) {
// there is already such cell Xf in our collection
$newXfIndexes[$oldXfIndex] = $existingStyle->getIndex();
} else {
// we don't have such a cell Xf, need to add
$workbook->addCellXf($newStyle);
$newXfIndexes[$oldXfIndex] = $newStyle->getIndex();
}
Run Code Online (Sandbox Code Playgroud)
编辑#2
Fix现已被推送到github上的develop分支.根据使用的样式数量,它确实会有轻微的性能影响......我会尝试明天晚上获得更快的版本