up vote 18 down vote favorite
19
share [g+] share [fb]

Whats the available solutions for PHP to create word document in linux environment?

link|improve this question
feedback

14 Answers

Add header and output HTML as you usually do.

header("Content-type: application/vnd.ms-word");
header("Content-Disposition: attachment;Filename=document_name.doc");

echo "<html>";
echo "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=Windows-1252\">";
echo "<body>";
echo "<b>My first document</b>";
echo "</body>";
echo "</html>";

Make sure you don't use external stylesheets. Everything should be in the same file.

If you need to produce "real" Word documents you need a Windows-based web server and COM automation. I highly recommend Joel's article on this subject.

link|improve this answer
Problem with this approach is that I can't embed graph in my document. – TechLearner Sep 24 '08 at 5:46
If you need to produce "real" Word documents you need a Windows-based web server. I highly recommend Joel's article on this subject: joelonsoftware.com/items/2008/02/19.html – Sergey Kornilov Sep 24 '08 at 12:38
For a more elaborate explanation of the technique mentioned above, check this article - codeproject.com/kb/office/Wordyna.aspx – mvark Feb 1 '11 at 2:30
feedback

OpenOffice templates + OOo command line interface.

  1. Create manually an ODT template with placeholders, like [%value-to-replace%]
  2. When instantiating the template with real data in PHP, unzip the template ODT (it's a zipped XML), and run against the XML the textual replace of the placeholders with the actual values.
  3. Zip the ODT back
  4. Run the conversion ODT -> DOC via OpenOffice command line interface.

There are tools and libraries available to ease each of those steps.

May be that helps.

link|improve this answer
Could you share which libraries you use, or think are good for these tasks? – Shade Feb 6 '11 at 19:16
feedback

You may also use a free LGPL library: phpdocx.

You may create pretty spphisticated docx documents with a few lines of code.

link|improve this answer
Most valuable comment on the subject. – Petrunov Aug 4 '11 at 18:23
feedback

By far the easiest way to create DOC files on Linux, using PHP is with the Zend Framework component phpLiveDocx.

From the project web site:

"phpLiveDocx allows developers to generate documents by combining structured data from PHP with a template, created in a word processor. The resulting document can be saved as a PDF, DOCX, DOC or RTF file. The concept is the same as with mail-merge."

It is completely free to download and use. For more information, please take a look at:

http://www.phplivedocx.org/articles/brief-introduction-to-phplivedocx/

link|improve this answer
2  
Seems to require signing up to a 3rd party service for API access that does the heavy lifting. – garrow Jun 9 '09 at 23:46
not a component but a web service, perhaps better is phpdocx.com/features? – DaveO Aug 31 '11 at 22:06
feedback

The Apache project has a library called POI which can be used to generate MS Office files. It is a Java library but the advantage is that it can run on Linux with no trouble. This library has its limitations but it may do the job for you, and it's probably simpler to use than trying to run Word.

Another option would be OpenOffice but I can't exactly recommend it since I've never used it.

link|improve this answer
feedback

If you really need to create a Word document, then your best bet is probably to use COM to generate the Word document through Microsoft Word. See http://www.programmershelp.co.uk/phpcreateword.php and http://drewd.com/2007/01/25/reading-from-a-word-document-with-com-in-php for some examples.

Otherwise my advice would be to use RTF or HTML documents - see http://conort.googlepages.com/generate-word-from-php and and http://paggard.com/projects/rtf.generator/ for example.

link|improve this answer
feedback
<?php
function fWriteFile($sFileName,$sFileContent="No Data",$ROOT)
    {
        $word = new COM("word.application") or die("Unable to instantiate Word");
        //bring it to front
        $word->Visible = 1;
        //open an empty document
        $word->Documents->Add();
        //do some weird stuff
        $word->Selection->TypeText($sFileContent);
        $word->Documents[1]->SaveAs($ROOT."/".$sFileName.".doc");
        //closing word
        $word->Quit();
        //free the object
        $word = null;
        return $sFileName;
    }
?>



<?php
$PATH_ROOT=dirname(__FILE__);
$Return ="<table>";
$Return .="<tr><td>Row[0]</td></tr>";
 $Return .="<tr><td>Row[1]</td></tr>";
$sReturn .="</table>";
fWriteFile("test",$Return,$PATH_ROOT);
?> 
link|improve this answer
feedback

A bit of a pickle here because you can't utilize the COM library nor use fopen to just create a word file. However, you can try creating a PDF file first and then using a PDF-word converter such as abiword to convert your PDF file to doc. That's not the best way to do it, but I hope it helps...

Also check out how the doc format works

link|improve this answer
feedback

There are 2 options to create quality word documents. Use COM to communicate with word (this requires a windows php server at least). Use openoffice and it's API to create and save documents in word format.

link|improve this answer
feedback

I was having problems getting Unicode characters to display correctly in Word documents created in this way. The following seems to work as a replacement content-type tag.

echo "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">";
link|improve this answer
feedback

Take a look at PHP COM documents (The comments are helpful) http://us3.php.net/com

link|improve this answer
feedback

OpenTBS can create DOCX dynamic documents in PHP using the technique of templates.

No temporary files needed, no command lines, all in PHP.

It can add or delete pictures. The created document can be produced as a HTML download, a file saved on the server, or as binary contents in PHP.

It can also merge OpenDocument files (ODT, ODS, ODF, ...)

http://www.tinybutstrong.com/tools.php

link|improve this answer
feedback

PHPWord can generate Word documents in docx format. It can also use an existing .docx file as a template - template variables can be added to the document in the format ${varname}

It has an LGPL license and the examples that came with the code worked nicely for me.

link|improve this answer
feedback

Following on Ivan Krechetov's answer, here is a function that does mail merge (actually just simple text replace) for docx and odt, without the need for an extra library.

function mailMerge($templateFile, $newFile, $row)
{
  if (!copy($templateFile, $newFile))  // make a duplicate so we dont overwrite the template
    return false; // could not duplicate template
  $zip = new ZipArchive();
  if ($zip->open($newFile, ZIPARCHIVE::CHECKCONS) !== TRUE)
    return false; // probably not a docx file
  $file = substr($templateFile, -4) == '.odt' ? 'content.xml' : 'word/document.xml';
  $data = $zip->getFromName($file);
  foreach ($row as $key => $value)
    $data = str_replace($key, $value, $data);
  $zip->deleteName($file);
  $zip->addFromString($file, $data);
  $zip->close();
  return true;
}

This will replace [Person Name] with Mina and [Person Last Name] with Mooo:

$replacements = array('[Person Name]' => 'Mina', '[Person Last Name]' => 'Mooo');
$newFile = tempnam_sfx(sys_get_temp_dir(), '.dat');
$templateName = 'personinfo.docx';
if (mailMerge($templateName, $newFile, $replacements))
{
  header('Content-type: application/msword');
  header('Content-Disposition: attachment; filename=' . $templateName);
  header('Accept-Ranges: bytes');
  header('Content-Length: '. filesize($file));
  readfile($newFile);
  unlink($newFile);
}

Beware that this function can corrupt the document if the string to replace is too general. Try to use verbose replacement strings like [Person Name].

link|improve this answer
feedback

Your Answer

 
or
required, but never shown