up vote 3 down vote favorite
share [g+] share [fb]

I want to add an word import function to our CMS, the only problem I cannot seems to find a good library for reading docx files (Word 2007).

Do anyone has some recommendations, the library should be able to extract content of the document and basic styling like italic, bold, superscript?

Thanks for your help

link|improve this question

feedback

7 Answers

up vote 1 down vote accepted

Or, since you requested a library, you may want to look into something like Docvert. I was just looking around based on your question, and it's my favorite so far for PHP. You input the word file location, it transforms it into something simple with the attributes and all that good stuff.

link|improve this answer
looks promising but I would have to make an API of it. – RageZ Oct 1 '09 at 4:58
feedback

docx files are actually just containers for the document's XML. You should be able to unzip the docx file and then go to the word folder inside, then to the document.xml. This has the actual text. But things like the fonts and styles are in other xml files in the docx container, so you'll probably want to mess around a bit and figure out what is what and how to match it up (start by using namespaces, I bet).

But yea, unzip the file, then use simplexml to convert it into something you can actually mess around with.

link|improve this answer
Thanks but I am wondering if someone didn't came with a library to do that. I would do some XSLT processing if I really need. – RageZ Oct 1 '09 at 3:09
See my other answer. The only thing that I don't like about it is the lack of easy to find API – Anthony Oct 1 '09 at 3:15
the class TbsZip can read (and even edit) the content of zip archives without any dependency nor any temporary files. XML analysis can be done with several other tools. – Skrol29 Mar 31 '11 at 22:33
feedback

There is a free PHP library for managing docx: You may find it in http://www.phpdocx.com I hope ti can be useful :-)

link|improve this answer
feedback

PHPDocX PRO includes a TransformDoc class that can read .docx (zip) files and generate XHTML (or PDF) from it:

...
require_once 'phpdocx_pro/classes/TransformDoc.inc';
$doc = new TransformDoc();
$doc->setStrFile($file->filepath);
$doc->generateXHTML();
$html = $doc->getStrXHTML();
link|improve this answer
This requires a license – user478636 Nov 3 '11 at 15:13
feedback

There is a library to do this but it work with Zend framework may be it will help you It is called phpLiveDocx : http://www.phplivedocx.org/downloads/ The library is licensed under New Bcd

link|improve this answer
feedback

I have just find a library that has both reading and writing support check it on the codeplex forge http://openxmlapi.codeplex.com and it is licensed under GPLv2 .

link|improve this answer
feedback

Convert a docx document to a odt using OpenOffice. Use then eZ Components to do the parsing and import. They actually use the import in their CMZ eZ Publish.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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