首页 > 编程知识 正文

phpword读取内容和样式(php获取文本内容)

时间:2023-12-18 19:07:40 阅读:317331 作者:KDMI

本文目录一览:

用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:mywebmuban.doc");

//读取文档内容

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

echo $test;

echo "br";

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

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

echo $test;

$word-Documents-Add();

// 在新文档中添加文字

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

//把文档保存在目录中

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

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

$word-Quit();

?

php 怎么实现读取word文档内容,显示到html上面?能给个案例最好了,谢谢!

如果在win可以用com组件读取:

// 建立一个指向新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:a.doc");  

 //读取文档内容  

 

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

echo $test;  

 echo "br";  

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

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

 echo $test;  

 $word-Documents-Add();  

 // 在新文档中添加文字  

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

//把文档保存在目录中  

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

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

$word-Quit();

linux可用antiword插件去实现

php怎么获取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:mywebmuban.doc”);

//读取文档内容

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

echo $test;

echo “br”;

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

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

echo $test;

$word-Documents-Add();

// 在新文档中添加文字

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

//把文档保存在目录中

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

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

$word-Quit();

?

怎样用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文件

$word-Documents[1]-SaveAs(dirname(__FILE__)."/".$htmlname,8);

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

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

echo $content;

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

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

echo $content;

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

$word-Documents-close(true);

$word-Quit();

$word = null;

unset($word);

//---------------------------------新建立Word文档操作 START--------------------------------------

//建立一个空的word文档

$word-Documents-Add();

//写入内容到新建word

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

//保存新建的word文档

$word-Documents[1]-SaveAs(dirname(__FILE__)."/".$wordname);

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

$word-Quit();

}

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

?

怎样用PHP读取一个word文档内容,并且包含样式入库?

可以试下phpoffice/phpword库。

phpoffice包含了office套件中的word,excel, powerpoint,visio等比较常用的软件文档的处理库。可以用于读取及生成相应的文档。

具体操作方法可以查看官方文档,以及示例代码。

PHPOffice/PHPWord

怎样用PHP读取一个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文件

$word-Documents[1]-SaveAs(dirname(__FILE__)."/".$htmlname,8);

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

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

echo $content;

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

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

echo $content;

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

$word-Documents-close(true);

$word-Quit();

$word = null;

unset($word);

//---------------------------------新建立Word文档操作 START--------------------------------------

//建立一个空的word文档

$word-Documents-Add();

//写入内容到新建word

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

//保存新建的word文档

$word-Documents[1]-SaveAs(dirname(__FILE__)."/".$wordname);

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

$word-Quit();

}

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

?

版权声明:该文观点仅代表作者本人。处理文章:请发送邮件至 三1五14八八95#扣扣.com 举报,一经查实,本站将立刻删除。