_startRow = $startRow + 1; $this->_endRow = $startRow + $chunkSize + 1; } public function readCell($column, $row, $worksheetName = '') { if ($row >= $this->_startRow && $row < $this->_endRow) { return true; } return false; } }