This project started as a one file one file library for reading .xlsx files in PHP. The main reason for creating this was finding PHPExcel and not being able to use it (memory constraints).
It has since grown to comprehend a namespaced version as well, alongside the single-file version - this bit contributed by Alex Kucherenko.
Single-file version:
getSheets(); foreach ($sheets as $sheet) { foreach ($sheet->getRowIterator() as $row_index => $row) { foreach ($row->getCellIterator() as $cell_index => $cell) { // do stuff } } } Author ====== Peter Lind Contributions ============= Alex Kucherenko License ======= See the COPYRIGHT file