What is the best PHP excel read write class? #excel read write
Edit
by Osagie Samuel E - 9 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 - 9 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
This package implements a reader and writer for CSV files.
It implements a reader interface that can perform several types of operations to read CSV files, like reading the headline record, reading one record, reading multiple records or reading all records.
The writer interface can write the headline record, write one record and write multiple records.
The package can also truncate a CSV file to create a file with no records, copy a CSV file to another, or move a CSV file to another file name.
| by nvb package author 65 - 9 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 - 9 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.