Convert excel to xml in php

I want to read an Excel file and create an XML file from this data. Is this possible in php?

thanks

+4
source share
3 answers

A quick google search of this PHP project on CodePlex, you can take a look

It supports:

... write and read from different spreadsheet file formats such as Excel (BIFF) .xls, Excel 2007 (OfficeOpenXML) .xlsx, CSV, Libre / OpenOffice Calc.ods, Gnumeric, PDF, HTML, ... This project built around the Microsoft OpenXML and PHP standard.

+3
source

Yes, but I do not know about the existing libs for php to convert them.

There is some information about excel file formats, so you can write code

old: http://www.openoffice.org/sc/excelfileformat.pdf new: http://msdn.microsoft.com/en-us/library/aa338205(v=office.12).aspx

0
source
0
source

Source: https://habr.com/ru/post/1412811/


All Articles