Avigayil
Avigayil

Reputation: 277

Convert .xlsx file to .csv file using PHP

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

Answers (1)

sbrattla
sbrattla

Reputation: 5386

You can read XLSX files with PHP using PhpSpreadsheet. From there, you only need to figure out the destination format.

Upvotes: 21

Related Questions