Whats the available solutions for PHP to create word document in linux environment?
|
Add header and output HTML as you usually do.
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. |
|||||||||
|
|
OpenOffice templates + OOo command line interface.
There are tools and libraries available to ease each of those steps. May be that helps. |
|||||
|
|
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/ |
|||||||||
|
|
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. |
|||
|
|
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. |
|||
|
|
|
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. |
|||
|
|
|
||||
|
|
|
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, ...) |
|||
|
|
|
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. |
|||
|
|
|
Take a look at PHP COM documents (The comments are helpful) http://us3.php.net/com |
|||
|
|
|
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.
This will replace [Person Name] with Mina and [Person Last Name] with Mooo:
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]. |
||||
|
|