㈠ php怎么获取word文件的内容
window下纤悉孝可以用COM类来实现读取word内容,linux下可以通毁稿过安装antiword包来实现获取word内容陆弊。
㈡ php读取Word导入MySQL数据库
给你提供一个读取Word内容的代码,自己把读取出来的内容插入数据库:<?
/**
* @desc PHP读取Word文档
*
*/
$word = new COM("word.application") or die ("Could not initialise MS Word object.");
$word->Documents->Open(realpath("asd.doc"));
$content = (string) $word->ActiveDocument->Content; echo $content; //读取Word内容
$word->ActiveDocument->Close(false); $word->Quit();
$word = null;
unset($word);
?>
㈢ php如何读取WORD文档
读取之后在写 insert into 啊
㈣ 怎样用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表中的数据 有什么办法吗
服务器上如果装亩伏有word或wps软件,可以通过其api接口访问word数据。php的语言我不是很会,但我经常用vb做office的二次开发。
office 软件的 api接口,可以参考做中微迅胡携软msdn。
㈥ PHP读取word内容
有个比较笨但是很有效的方法,不过要服务器支持才行~~用exec执行antiword或者catdoc这样就可以获得doc的文本内容~~DOC中的图片我不知道能不能弄出来~~在命令行下没试过
㈦ PHP怎样读取word文档实现在线预览,并且不受操作系统的限制,利用COM组件的话太受限了
你可以尝试一下PHPWord,用它可以把任意word文件转换为html网页,这样任何人都可以在浏览器里查看你的word文件了。
PHPWord
尽管目前只是测试版但是功能还是很强劲!完美兼容MF Word并且支持打开.doc or.docx。可以插入文本,文本符,分页,页眉/页脚,表格,列表中的元素,超链接等等。
地址:http://phpword.codeplex.com
㈧ 怎样用PHP读取一个word文档内容,并且包含样式入库
可以试下phpoffice/phpword库。
phpoffice包含了office套件中的word,excel, powerpoint,visio等比较常用的软件文档的处理库。可以用于读取及生成相应的文档。
具体操作方法可以查看官方文档,以及示例代码。
PHPOffice/PHPWord
㈨ php读取Word导入MySQL数据库
给你提供一个读取Word内容的代码,自袜衫闷己把读取出来的告弯内塌毕容插入数据库:<?
/**
* @desc PHP读取Word文档
*
*/
$word = new COM("word.application") or die ("Could not initialise MS Word object.");
$word->Documents->Open(realpath("asd.doc"));
$content = (string) $word->ActiveDocument->Content; echo $content; //读取Word内容
$word->ActiveDocument->Close(false); $word->Quit();
$word = null;
unset($word);
?>