How can i change the file extension from .xlsx to .xls using php. i have a xlsx file and i have to read the data from that file. I am using oleread to read xls file.

This works correctly with file format is .xls. But i need this to be work on xlsx file Please give me solution

thanks in advance

link|improve this question

71% accept rate
yes. i have to change the format – user966881 Jan 17 at 11:18
This needs more detail. Are you trying to generate an Excel 2007 file in PHP, or write a converter? – Widor Jan 17 at 11:21
feedback

closed as not a real question by Gordon, Widor, Mark Baker, edorian, hakre Jan 17 at 11:39

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

The easiest way is to open the .xlsx file in Excel 2007 or later and then go to Save as -> Excel 97-2003 workbook (.xls). You can also open xlsx in OpenOffice with various results depending on how advanced the Excel spreadsheet is (usually cannot convert macros properly).

If you are talking of a pure converter i think that it is possible to use the online tool at http://www.freefileconvert.com/ to convert it for you.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.