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

I would like to programatically convert a Microsoft Word document into XHTML. The language of choice is PHP, so I would appreciate any suggestions with PHP.

The initial idea is trying to convert the doc file into odt, and then use the Odt2Xhtml PHP class to get it into XHTML format.

Any better way to do this?

link|improve this question

77% accept rate
feedback

5 Answers

up vote 5 down vote accepted

If you're running Linux one way to go would be to install OpenOffice on the server.

Example instructions for a 'headless' (i.e. no UI) install can be found here.

You could then use a nice CLI app like unoconv executed via shell_exec to do your conversions via PHP.

link|improve this answer
feedback

The most robust way is to use COM to let Word save the document as HTML.

I don't know whether Word can generate XHTML directly; if not, Google shows plenty of options for doing that conversion.

link|improve this answer
Not especially robust: support.microsoft.com/default.aspx?scid=kb;EN-US;257757 – ChrisW Nov 18 '09 at 20:33
feedback

See http://www.codeplex.com/OpenXMLViewer which includes an XSLT you could adapt, which is what I did in docx4j. Note however, that that XSLT is not for the faint of heart!

link|improve this answer
feedback

phpLiveDocx offers a really easy way to convert Microsoft Word documents.

Learn more at the project web site:

http://www.phplivedocx.org

You can also use phpLiveDocx to merge textual data with MS Word templates and save the resulting document to DOC, DOCX, RTF, PDF or TXT.

The component is enterprise-ready and has been written for the Zend Framework.

link|improve this answer
feedback

Disclaimer: I'm working for this company.

You can use our free "RTF-to-HTML DLL COM". Library supports converting from RTF, text into XHTML/HTML. Below i'll put the code in PHP for examle from rtf:

     $rtf2htmlCom = new COM("RTF2HTML.Converter"); 
     $rtf2htmlCom->PreserveImages=true;
     $rtf2htmlCom->OutputFormat = 1;
     $rtfFile = "C:\\Inetpub\\wwwroot\\rtf2htm\\Word1.rtf";
     $htmlFile ="C:\\Inetpub\\wwwroot\\rtf2htm\\Word1.htm";
     $result =$rtf2htmlCom->ConvertFile($rtfFile,$htmlFile);
     print($result);
     unset($rtf2htmlCom);
     echo "done";   

Good luck :)

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.