Login
网站首页 > 文章中心 > 其它

php使用com操作word

作者:小编 更新时间:2023-08-03 13:22:25 浏览量:341人看过

用php 读取word 文档内容 比如:word文档为试题等等

这个是通过调用com组件的方式操作word的

// 建立一个指向新COM组件的索引

$word = new COM("word.application") or die("Can't start Word!");

// 显示目前正在使用的Word的版本号

//echo "Loading Word, v. {$word-Version}br";

// 把它的可见性设置为0(假),如果要使它在最前端打开,使用1(真)

// to open the application in the forefront, use 1 (true)

//$word-Visible = 0;

//打?一个文档

$word-Documents-OPen("d:\myweb\muban.doc");

//读取文档内容

$test= $word-ActiveDocument-content-Text;

echo $test;

echo "br";

//将文档中需要换的变量更换一下

$test=str_replace("{变量}","这是变量",$test);

$word-Documents-Add();

// 在新文档中添加文字

$word-Selection-TypeText("$test");

//把文档保存在目录中

$word-Documents[1]-SaveAs("d:/myweb/comtest.doc");

// 关闭与COM组件之间的连接

$word-Quit();

phpword 怎么打开word文件

目前程序编译语言有很多种,其中php是最为常见的一种编程语言.php读取word文档是很多朋友都想了解的,下面就由达内的老师为大家介绍一下.

php

/*

* 必须将 php.ini 中的 com.allow_dcom 设为 TRUE

*/

function php_Word($wordname,$htmlname,$content)

{

//获取链接地址

$url = $_SERVER['HTTP_HOST'];

$url = ";

$url = $url.$_SERVER['PHP_SELF'];

$url = dirname($url)."/";

//建立一个指向新COM组件的索引

$word = new COM("word.application") or die("Unable to instanciate Word");

//显示目前正在使用的Word的版本号

echo "Loading Word, v. {$word-Version}";

//把它的可见性设置为0(假),如果要使它在最前端打开,使用1(真)

$word-Visible = 1;

//---------------------------------读取Word内容操作 START-----------------------------------------

//打开一个word文档

$word-Documents-Open($url.$wordname);

//将filename.doc转换为html格式,并保存为html文件

//获取htm文件内容并输出到页面 (文本的样式不会丢失)

$content = file_get_contents($url.$htmlname);

echo $content;

//获取word文档内容并输出到页面(文本的原样式已丢失)

$content= $word-ActiveDocument-content-Text;

//关闭与COM组件之间的连接

$word-Documents-close(true);

$word = null;

unset($word);

php调用com组件,如何以读写方式打开word文档?

我以前试着做PDF转WORD的时候测试了下 发下通过PHP去读写word好慢

COM 是微软的一种信息服务组件

php 怎么实现在线预览 word 文档

*

必须将

php.ini

中的

com.allow_dcom

设为

true

function

php_word($wordname,$htmlname,$content)

$url

=

$_server['http_host'];

";

$url.$_server['php_self'];

dirname($url)."/";

//建立一个指向新com组件的索引

$word

new

com("word.application")

or

die("unable

to

instanciate

word");

//显示目前正在使用的word的版本号

echo

"loading

word,

v.

{$word-

version}";

$word-visible

//---------------------------------读取word内容操作

start-----------------------------------------

$word-documents-open($url.$wordname);

//获取htm文件内容并输出到页面

(文本的样式不会丢失)

$content

file_get_contents($url.$htmlname);

$content;

$content=

$word-activedocument-content-text;

//关闭与com组件之间的连接

$word-documents-close(true);

$word-quit();

null;

//---------------------------------新建立word文档操作

start--------------------------------------

//建立一个空的word文档

$word-documents-add();

//写入内容到新建word

$word-selection-typetext("$content");

//保存新建的word文档

$word-documents[1]-saveas(dirname(__file__)."/".$wordname);

}

php_word("tesw.doc","filename.html","写入word的内容");

php如何实现word在线预览

可以用 php 语言的 com 支持功能函数来完成,比如:

$word = new COM("word.application") or die("Unable to instanciate Word");$word-Documents-Open($url.$wordname);

或者使用 word 文档的插件来完成,比如:swftools 等.

如何用 PHP 生成 Word 文档

PHP 生成 word 文档,可以考虑以下两类办法:

① 利用 windows 系统提供的 com组件.

这种方法的原理,是使用 php 的调用 com 组件功能函数,如果系统里安装过 office 的服务器,就可以调用 word.application .

这种方法,难分为两种,一种是生成mht格式写入word,另一种是编写纯 HTML 格式写入word.这种方法是基于 word 对 html 的良好支持.

以上就是土嘎嘎小编为大家整理的php使用com操作word相关主题介绍,如果您觉得小编更新的文章只要能对粉丝们有用,就是我们最大的鼓励和动力,不要忘记讲本站分享给您身边的朋友哦!!

版权声明:倡导尊重与保护知识产权。未经许可,任何人不得复制、转载、或以其他方式使用本站《原创》内容,违者将追究其法律责任。本站文章内容,部分图片来源于网络,如有侵权,请联系我们修改或者删除处理。

编辑推荐

热门文章