将样式从一行复制并粘贴到另一行

时间:2013-09-14 09:11:19

标签: php phpexcel

我正在使用PHP Excel使用模板Excel文件创建Excel。问题是我有一个datagrid,我在模板中设置了标题和第一行。这是它的样子:

template

最左上角的坐标是C49。

如果我有100行,我需要复制第一行的样式并将其粘贴100次。 这是我的代码

$cstart = 2;
$rstart = 49;
$count = 1;
$input = $worksheet->getStyle(num2char($cstart) . $rstart);

foreach ($b_data['rawData'] as $value) {
    $worksheet->setCellValueByColumnAndRow($cstart, $rstart, $count++)
            ->setCellValueByColumnAndRow($cstart + 1, $rstart, $value['key'])
            ->setCellValueByColumnAndRow($cstart + 5, $rstart, $value['value']);
    $interval = num2char($cstart) . $rstart . ':' . num2char($cstart+5) . $rstart;
    $worksheet->duplicateStyle($input, $interval);

    $rstart++;
}

function num2char($num) {
    $numeric = $num % 26;
    $letter = chr(65 + $numeric);
    $num2 = intval($num / 26);
    if ($num2 > 0) {
        return num2char($num2 - 1) . $letter;
    } else {
        return $letter;
    }
}

但是,我有以下内容:

enter image description here

但我的期望是:

enter image description here

是错误还是我做错了什么?

1 个答案:

答案 0 :(得分:1)

马克在评论中指出;合并的单元格是结构化的,而不是样式的。因此,复制样式不会自动复制合并的单元格。

有一个feature request能够复制整行,包括合并的单元格

解决此问题的一种方法是使用isInMergeRange()函数检查单元格是否是合并的一部分,如下所示:

$workbook = new PHPExcel;              // prepare the workbook 
$sheet = $workbook->getActiveSheet();   // get the sheet
$sheet->mergeCells('A1:E1');           // merge some cells for tesing
$cell = $sheet->getCell('A1');      // get a cell to check if it is merged
$cell->isInMergeRange()            // check if cell is merged

^这将返回一个布尔值,指示它是否是合并单元格的一部分。

您可能感兴趣的另一个功能是isMergeRangeValueCell()功能:

$cell->isMergeRangeValueCell()

^返回一个布尔值,表示它是合并单元格的一部分 单元格包含合并范围的值;它会在所有其他情况下返回false。