PHPExcelReadFilter.php 440 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * 读取excel过滤器类 单独文件
  4. */
  5. class PHPExcelReadFilter implements PHPExcel_Reader_IReadFilter {
  6. public $startRow = 1;
  7. public $endRow;
  8. public function readCell($column, $row, $worksheetName = '') {
  9. if (!$this->endRow) {
  10. return true;
  11. }
  12. if ($row >= $this->startRow && $row <= $this->endRow) {
  13. return true;
  14. }
  15. return false;
  16. }
  17. }