Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 813 Bytes

README.md

File metadata and controls

40 lines (31 loc) · 813 Bytes

Introduction

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.

Usage

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