Reading/Writing a MS Word file in PHP - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T07:15:27Z http://stackoverflow.com/feeds/question/188452 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/188452/reading-writing-a-ms-word-file-in-php 5 Reading/Writing a MS Word file in PHP Unkwntech 2008-10-09T18:09:15Z 2009-09-13T17:45:58Z <p>Is it possible to read and write Word (2003 and 2007) files in PHP without using a COM object? I know that I can:</p> <pre><code>$file = fopen('c:\file.doc', 'w+'); fwrite($file, $text); fclose(); </code></pre> <p>but Word will read it as an HTML file not a native .doc file.</p> http://stackoverflow.com/questions/188452/reading-writing-a-ms-word-file-in-php/189683#189683 3 Answer by Joe Lencioni for Reading/Writing a MS Word file in PHP Joe Lencioni 2008-10-10T00:23:47Z 2008-10-10T00:23:47Z <p>I don't know about reading native Word documents in PHP, but if you want to write a Word document in PHP, <a href="http://en.wikipedia.org/wiki/Microsoft_Office_XML_formats#Word_XML_Format_example" rel="nofollow">WordprocessingML (aka WordML)</a> might be a good solution. All you have to do is create an XML document in the correct format. I believe Word 2003 and 2007 both support WordML.</p> http://stackoverflow.com/questions/188452/reading-writing-a-ms-word-file-in-php/189894#189894 3 Answer by Sergey Kornilov for Reading/Writing a MS Word file in PHP Sergey Kornilov 2008-10-10T02:17:08Z 2008-10-10T15:18:33Z <p>Most probably you won't be able to read Word documents without COM.</p> <p>Writing was covered in this <a href="http://stackoverflow.com/questions/124959/create-word-document-using-php-in-linux">topic</a></p> http://stackoverflow.com/questions/188452/reading-writing-a-ms-word-file-in-php/189959#189959 0 Answer by acrosman for Reading/Writing a MS Word file in PHP acrosman 2008-10-10T02:45:48Z 2008-10-10T02:45:48Z <p>Office 2007 .docx should be possible since it's an XML standard. Word 2003 most likely requires COM to read, even with the standards now published by MS, since those standards are huge. I haven't seen many libraries written to match them yet.</p> http://stackoverflow.com/questions/188452/reading-writing-a-ms-word-file-in-php/191849#191849 0 Answer by databyss for Reading/Writing a MS Word file in PHP databyss 2008-10-10T15:24:10Z 2008-10-10T15:24:10Z <p>2007 might be a bit complicated as well.</p> <p>The .docx format is a zip file that contains a few folders with other files in them for formatting and other stuff.</p> <p>Rename a .docx file to .zip and you'll see what I mean.</p> <p>So if you can work within zip files in PHP, you should be on the right path.</p> http://stackoverflow.com/questions/188452/reading-writing-a-ms-word-file-in-php/191853#191853 0 Answer by D4V360 for Reading/Writing a MS Word file in PHP D4V360 2008-10-10T15:25:06Z 2008-10-10T15:25:06Z <p>I don't know what you are going to use it for, but I needed .doc support for search indexing; What I did was use a little commandline tool called "catdoc"; This transfers the contents of the Word document to plain text so it can be indexed. If you need to keep formatting and stuff this is not your tool.</p> http://stackoverflow.com/questions/188452/reading-writing-a-ms-word-file-in-php/265017#265017 3 Answer by Mac for Reading/Writing a MS Word file in PHP Mac 2008-11-05T12:35:22Z 2009-01-24T03:59:34Z <p>this works with vs &lt; office 2007 and its pure PHP, no COM crap, still trying to figure 2007</p> <pre><code>&lt;?php /***************************************************************** This approach uses detection of NUL (chr(00)) and end line (chr(13)) to decide where the text is: - divide the file contents up by chr(13) - reject any slices containing a NUL - stitch the rest together again - clean up with a regular expression *****************************************************************/ function parseWord($userDoc) { $fileHandle = fopen($userDoc, "r"); $line = @fread($fileHandle, filesize($userDoc)); $lines = explode(chr(0x0D),$line); $outtext = ""; foreach($lines as $thisline) { $pos = strpos($thisline, chr(0x00)); if (($pos !== FALSE)||(strlen($thisline)==0)) { } else { $outtext .= $thisline." "; } } $outtext = preg_replace("/[^a-zA-Z0-9\s\,\.\-\n\r\t@\/\_\(\)]/","",$outtext); return $outtext; } $userDoc = "cv.doc"; $text = parseWord($userDoc); echo $text; ?&gt; </code></pre> http://stackoverflow.com/questions/188452/reading-writing-a-ms-word-file-in-php/265079#265079 4 Answer by Stefan Gehrig for Reading/Writing a MS Word file in PHP Stefan Gehrig 2008-11-05T13:04:35Z 2008-11-05T13:04:35Z <p>Reading binary Word documents would involve creating a parser according to the published file format specifications for the DOC format. I think this is no real feasible solution.</p> <p>You could use the <a href="http://en.wikipedia.org/wiki/Microsoft_Office_XML_formats#Word_XML_Format_example" rel="nofollow">Microsoft Office XML formats</a> for reading and writing Word files - this is compatible with the 2003 and 2007 version of Word. For reading you have to ensure that the Word documents are saved in the correct format (it's called Word 2003 XML-Document in Word 2007). For writing you just have to follow the openly available XML schema. I've never used this format for writing out Office documents from PHP, but I'm using it for reading in an Excel worksheet (naturally saved as XML-Spreadsheet 2003) and displaying its data on a web page. As the files are plainly XML data it's no problem to navigate within and figure out how to extract the data you need.</p> <p>The other option - a Word 2007 only option (if the OpenXML file formats are not installed in your Word 2003) - would be to ressort to <a href="http://en.wikipedia.org/wiki/Office_Open_XML" rel="nofollow">OpenXML</a>. As <a href="http://stackoverflow.com/users/9094/databyss">databyss</a> pointed out <a href="http://stackoverflow.com/questions/188452/readingwriting-a-ms-word-file-in-php#191849">here</a> the DOCX file format is just a ZIP archive with XML files included. There are a lot of resources on <a href="http://msdn.microsoft.com/en-us/office/default.aspx" rel="nofollow">MSDN</a> regarding the OpenXML file format, so you should be able to figure out how to read the data you want. Writing will be much more complicated I think - it just depends on how much time you'll invest.</p> <p><strong>Perhaps you can have a look at <a href="http://www.codeplex.com/PHPExcel/" rel="nofollow">PHPExcel</a> which is a library able to write to Excel 2007 files and read from Excel 2007 files using the OpenXML standard. You could get an idea of the work involved when trying to read and write OpenXML Word documents.</strong></p> http://stackoverflow.com/questions/188452/reading-writing-a-ms-word-file-in-php/475547#475547 0 Answer by Josh Smeaton for Reading/Writing a MS Word file in PHP Josh Smeaton 2009-01-24T05:09:28Z 2009-01-24T05:09:28Z <p>Would the .rtf format work for your purposes? .rtf can easily be converted to and from .doc format, but it is written in plaintext (with control commands embedded). This is how I plan to integrate my application with Word documents.</p> http://stackoverflow.com/questions/188452/reading-writing-a-ms-word-file-in-php/861928#861928 2 Answer by Leo Bonnafe for Reading/Writing a MS Word file in PHP Leo Bonnafe 2009-05-14T07:03:23Z 2009-05-14T07:03:23Z <p><strong>phpLiveDocx</strong> is a Zend Framework component and can read and write DOC and DOCX files in PHP on Linux, Windows and Mac.</p> <p>See the project web site at:</p> <p><a href="http://www.phplivedocx.org" rel="nofollow">http://www.phplivedocx.org</a></p> http://stackoverflow.com/questions/188452/reading-writing-a-ms-word-file-in-php/900581#900581 1 Answer by Iman Samizadeh for Reading/Writing a MS Word file in PHP Iman Samizadeh 2009-05-23T00:57:12Z 2009-05-23T00:57:12Z <p>You can use Antiword, it is a free MS Word reader for Linux and most popular OS.</p> <pre><code>$document_file = 'c:\file.doc'; $text_from_doc = shell_exec('/usr/local/bin/antiword '.$document_file); </code></pre> http://stackoverflow.com/questions/188452/reading-writing-a-ms-word-file-in-php/1418354#1418354 0 Answer by jahajee for Reading/Writing a MS Word file in PHP jahajee 2009-09-13T17:45:58Z 2009-09-13T17:45:58Z <p>www.phplivedocx.org is a SOAP based service that means that you always need to be online for testing the Files also does not have enough examples for its use . Strangely I found only after 2 days of downloading (requires additionaly zend framework too) that its a SOAP based program(cursed me !!!)...I think without COM its just not possible on a Linux server and the only idea is to change the doc file in another usable file which PHP can parse...</p>