码迷,mamicode.com
首页 > Web开发 > 详细

[php]在PHP中读取和写入WORD文档的代码

时间:2015-04-29 19:26:32      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:

测试平台windows 

使用的windows的com主键。

 1 <?  
 2 // 建立一个指向新COM组件的索引  
 3 $word = new COM("word.application") or die("Can‘t start Word!");  
 4 // 显示目前正在使用的Word的版本号  
 5 //echo "Loading Word, v. {$word->Version}<br>";  
 6 // 把它的可见性设置为0(假),如果要使它在最前端打开,使用1(真)  
 7 // to open the application in the forefront, use 1 (true)  
 8 //$word->Visible = 0;  
 9 
10 //打?一个文档  
11 $word->Documents->OPen("d:\a.doc");  
12 //读取文档内容  
13 
14 $test= $word->ActiveDocument->content->Text;  
15 
16 echo $test;  
17 echo "<br>";  
18 //将文档中需要换的变量更换一下  
19 $test=str_replace("<{变量}>","这是变量",$test);  
20 echo $test;  
21 $word->Documents->Add();  
22 // 在新文档中添加文字  
23 $word->Selection->TypeText("$test");  
24 //把文档保存在目录中  
25 $word->Documents[1]->SaveAs("d:/myweb/comtest.doc");  
26 // 关闭与COM组件之间的连接  
27 $word->Quit();  
28 ?> 

 

  

[php]在PHP中读取和写入WORD文档的代码

标签:

原文地址:http://www.cnblogs.com/tl542475736/p/4466533.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!