我正在使用 PHPExcel 库从单元格中获取数据。我实现PHPExcel_Reader_IReadFilter
了 iterface 并将其设置在我的 reader 对象中以从 custom 读取数据range(B1:J50 e.g)
。它工作正常,但阅读器没有得到空单元格,但我需要得到它们。我打电话IterateOnlyExistingCells(false)
,但读者忽略我的过滤器并获取所有单元格。
class CellsFilter implements PHPExcel_Reader_IReadFilter {
private $startCellName;
private $startCellValue;
private $endCellName;
private $endCellValue;
private $additionalCells;
public function __construct($strRange) {
$this->initializeRange($strRange);
}
public function readCell($column, $row, $worksheetName = '') {
if ($row >= $this->startCellValue && $row <= $this->endCellValue) {
if (in_array($column, range($this->startCellName, $this->endCellName))) {
return true;
}
}
return false;
}