views:

441

answers:

4

Hi,

I need to create a word document from a word template, its something like, we need to replace the few strings (say variables) in the template with the values.

Please tell how we can do this in PHP ( or cakePHP).

Thanks

A: 

The biggest problem you will run into is that the .doc format is binary in nature (see this question and this post by Joel).

Is there any reason you cannot using either an HTML formatted document (which word has been able to open for over 10 years) or a Rich Text File? Both of these are text based, and will cause you significantly less pain. They are, as a result, very easy to use a template with.

Alternatively, if you can be sure that the user will have a newer version of Office (2007+) then you could, though it is somewhat tricky, use a .docx document, which is actually a Zip Archive and XML data. You can implement this fairly simply by creating a .docx word file that has the template you need, renaming it to .zip, extracting the files, teaching your application to do the text replacement on this in-place file structure, re-zip it using PHP's ZipArchive class, and then sending that file (named .docx, of course).

Dereleased
A: 

Check http://www.phpbuilder.com/annotate/message.php3?id=1024286 and also the article it comments.

I made a similar trick when I needed to generate a simple excel table. When sending the right header, the client's excel didn't complain at all. Or if you can use another format directly, use it. (.docx or open document are compressed xml, so you can manipulate it more easily)

Krab
A: 

You can use either Aspose.Words for .NET or Aspose.Words for Java. One you can use from PHP via COM Interop and another via Java Bridge as described in our documentation here.

romeok