Skip to content

Fake51/XLSXReader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

.xlsx file reader library for PHP

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages