How to convert .xlsx file to .xml file using php?

4.4k views Asked by At

Is there any way I can able to convert .xlsx file to .xml using PHP?

I will just upload a xlsx document file which should be converted to xml file

1

There are 1 answers

0
Agustin Ugarte On BEST ANSWER

Check the PHPExcel spreadsheet engine

It will alow you to read different file formats into your spreadsheet object

  • Excel 2007 (spreadsheetML)
  • BIFF5 (Excel 5.0 / Excel 95), BIFF8 (Excel 97 and higher)
  • PHPExcel Serialized Spreadsheet
  • Excel 2003 XML format
  • Open Office Calc (.ods)
  • Gnumeric
  • Symbolic Link (SYLK)
  • CSV (Comma Separated Values)

as well as to output your spreadsheet object to different file formats

  • Excel 2007 (spreadsheetML)
  • BIFF8 (Excel 97 and higher)
  • PHPExcel Serialized Spreadsheet
  • CSV (Comma Separated Values)
  • HTML
  • PDF

I think it's definitely worth a look and might get you going. Good luck!