PHP Classes

MS word Editing

Recommend this page to a friend!

      PHP MS Word  >  All threads  >  MS word Editing  >  (Un) Subscribe thread alerts  
Subject:MS word Editing
Summary:I want to Replace text in Word Document
Messages:4
Author:Ram Sharma
Date:2007-12-17 12:19:57
Update:2008-02-25 03:04:24
 

  1. MS word Editing   Reply   Report abuse  
Picture of Ram Sharma Ram Sharma - 2007-12-17 12:19:58
Hi,

I need to replace text in a word document in PHP through COM.


- Ram Sharma

  2. Re: MS word Editing   Reply   Report abuse  
Picture of Neeraj Thakur Neeraj Thakur - 2007-12-18 04:51:04 - In reply to message 1 from Ram Sharma
Please let me know the problem that you are facing or contact me thru messenger.. my id is neeraj_th at yahoo dot com

  3. Re: MS word Editing   Reply   Report abuse  
Picture of felix mission jr felix mission jr - 2008-02-25 03:04:24 - In reply to message 2 from Neeraj Thakur
is it possible to manipulate MS Office on web browser with using a linux server?

  4. Re: MS word Editing   Reply   Report abuse  
Picture of xtr3mz xtr3mz - 2020-03-17 09:47:29 - In reply to message 2 from Neeraj Thakur
this class is awesome!

How to replace texts from a PHP array? or how to convert VBA code to php usable code?

eg. PHP array
$arr=array("text1"=>"replacement1","text2"=>"replacement2");

VBA:
With ActiveDocument.Content.Find
.ClearFormatting
.Text = "hi"
.Replacement.ClearFormatting
.Replacement.Text = "hello"
.Execute Replace:=wdReplaceAll, Forward:=True, _
Wrap:=wdFindContinue
End With


thanks a lot