在PHPSpreadsheet中迭代时如何获取单元格坐标?

时间:2018-01-24 10:45:44

标签: php excel phpspreadsheet

我试图在PHPSpreadsheet中填充和标记一些标题。列数可以是可变的。在文档中建议将单元格设置为范围,因此我需要知道最后一个单元格的坐标才能执行此操作。

我在遍历列时尝试使用getCellByColumnAndRow,但这会返回单元格的值而不是坐标:

$i = 1;
$lastCellValue = null;

foreach ($headers as $header) {
    $sheet->setCellValueByColumnAndRow($i, 1, $header);
    $lastCellValue = $sheet->getCellByColumnAndRow($i, 1);
    $i++;
}

$spreadsheet->getActiveSheet()->getStyle('A1:'.$lastCellValue)->getFill()
    ->setFillType(\PhpOffice\PhpSpreadsheet\Style\Fill::FILL_SOLID)
    ->getStartColor()->setARGB('FFFF0000');

迭代时如何获取最后一个单元格的坐标?

2 个答案:

答案 0 :(得分:2)

getCellByColumnAndRow()不返回单元格值,它返回单元格对象 ....并且该单元格对象有多种方法,包括getColumn(),{{ 1}}和getRow()

所以

getCoordinate()

答案 1 :(得分:0)

要检索单元格值,可以使用以下方法:

$sheet->getCellByColumnAndRow($intColumn, $intRow)->getParent()->getCurrentCoordinate();

在您的情况下,您应该尝试:

enter$lastCellValue = $sheet->getCellByColumnAndRow($i, 1)->getParent()->getCurrentCoordinate();