What is the best PHP excel read write class? #excel read write
Edit
by Osagie Samuel E - 7 years ago (2016-02-12)
Parse and write Excel files
| I need to parse and write Excel files. |
- 1 Clarification request
1.
by Gerry Danen - 7 years ago (2016-03-01) Reply
Have you tried PHPExcel? I have recently used it, and it does a good job for me.
Ask clarification
1 Recommendation
| by nvb package author 55 - 7 years ago (2016-02-29) Comment
low and stable memory usage (give it a try by using benchmarkReader and benchmarkWriter)
works with PHP 5.3 and above
__invoke() implemented to use it as function
unified reader and writer
adapter to easy up migration from EasyCsv - 0.0.1 to this component
writer
reader
usage of filters - control what comes in and what comes out
reader
implemented iterator
readOne();
readMany();
readAll();
writer
copy();
delete();
move();
truncate();
writeOne();
writeMany();
writeAll(); //truncates file and writes content
|
- 1 Comment
1.
by Manuel Lemos - 7 years ago (2016-03-01) Reply
This is interesting. I just don't know if Osagie wanted a package to read and write Excel files using the native formats.