Convert .xlsx file to .csv file using PHP

Avigayil picture Avigayil · Aug 1, 2011 · Viewed 27.8k times · Source

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?

Answer

sbrattla picture sbrattla · Aug 1, 2011

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