Created
December 13, 2011 21:07
-
-
Save gabrielgilini/1473891 to your computer and use it in GitHub Desktop.
A class to partially read Excel worksheets with PHPExcel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /************************** | |
| * Author: Gabriel Gilini * | |
| **************************/ | |
| /***************************************************** | |
| // Usage example: | |
| $columns = array('A', 'C', 'J', 'K', 'M', 'N', 'O'); | |
| $filename = '/tmp/example.xls'; | |
| $fileType = PHPExcel_IOFactory::identify($filename); | |
| $reader = PHPExcel_IOFactory::createReader($fileType); | |
| $startRow = 4; | |
| $rowStep = 1000; | |
| $reader->setReadDataOnly(true); | |
| while(true) | |
| { | |
| $reader->setReadFilter( | |
| new PartialReader( | |
| $startRow, | |
| $startRow + $rowStep - 1, | |
| $columns | |
| ) | |
| ); | |
| $phpExcel = $reader->load($filename); | |
| $sheet = $phpExcel->getActiveSheet(); | |
| $collection = $sheet->getCellCollection(); | |
| unset($phpExcel, $sheet); | |
| if(empty($collection)) | |
| { | |
| break; | |
| } | |
| $startRow += $rowStep; | |
| // Do something with the collection | |
| } | |
| *****************************************************/ | |
| require_once(dirname(__FILE__) . '/../../PHPExcel.php'); | |
| class PartialReader implements PHPExcel_Reader_IReadFilter | |
| { | |
| public function __construct($minRow = 0, $maxRow = 65536, $columns = array()) | |
| { | |
| $this->minRow = $minRow; | |
| $this->maxRow = $maxRow; | |
| if(empty($columns)) | |
| { | |
| $this->allColumns = true; | |
| } | |
| else | |
| { | |
| $this->allColumns = false; | |
| $this->columns = $columns; | |
| } | |
| } | |
| public function readCell($column, $row, $worksheetName = '') | |
| { | |
| if ( | |
| $row >= $this->minRow | |
| && $row <= $this->maxRow | |
| && ( | |
| $this->allColumns | |
| || in_array( | |
| $column, | |
| $this->columns | |
| ) | |
| ) | |
| ) | |
| { | |
| return true; | |
| } | |
| return false; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment