Reputation: 277
I'm looking for a low overhead way to convert a .xlsx
file to a .csv
file using PHP without consuming excess memory or loading extraneous classes. Anyone?
Upvotes: 24
Views: 39311
Reputation: 5386
You can read XLSX files with PHP using PhpSpreadsheet. From there, you only need to figure out the destination format.
Upvotes: 21