时间:2021-07-01 10:21:17 帮助过:1人阅读
PHP5.4
[CoM];
path to a file containing GUlDs,llDs or filenames of files with TypeLibs;
http://php.com/com.typelib-file;com.typelib_file=
;allow Distributed-COM calls
;http://php.cn/com.allow-dcomcom.allow dcom= true
在php.ini中增加
[COM_DOT_NET]extension=php_com_dotnet.dll
重启 php即可.
在根目录输入
<?php
error_reporting(E_ALL);
ini_set("display_errors","On");
$excel = new COM("Excel.application") or die ("ERROR: Unable to instantaniate COM!\r\n");
print_r(get_loaded_extensions());?>
可以数组形式罗列php的现有组件.
新建index.php, 默认传入3.doc , 然后运行就可以查看效果了.
<?php/**
* Created by PhpStorm.
* User: zhangcanlong
* Date: 2016/11/15
* Time: 23:41
*/function word2html($wordname,$htmlname){
//获取链接地址
/*
//$url=$_SERVER['HTTP_HOST'];//获取服务器地址
// $url=$url.$_SERVER['PHP_SELF'];//获取当前服务器下的文件名和目录
// $url=dirname($url)."/";
*/
//去除目录中的文件名
$word = new COM("word.application") or die("找不到 Word 程序"); // 建立一个指向新COM组件的索引
// 显示目前正在使用的Word的版本号
//echo "Loading Word, v. {$word->Version}<br>";
// 把它的可见性设置为0(假),如果要使它在最前端打开,使用1(真)
$word->Visible = 0;
$word->Documents->Open($wordname) or die("无法打开这文件");
header("Content-Type: text/html;charset=gb2312");//设置文件的格式
//打开一个文档
//把文档保存在目录中
try{
$word->Documents[1]->SaveAs($htmlname,8);
} catch(Exception $e){
print $e->getMessage();
}
$content=file_get_contents($htmlname);
echo $content;//
输出word文档的内容可以看到当前目录的1.docx会生成1.html文件,另外网站展示1.html
相关推荐:
php将字符串转为html实体的示例开发
如何将Excel文件转换为Html的详解(图)
如何将Excel文件转换为Html(图文)
以上就是PHP实现转换word为HTML并在线预览的详细内容,更多请关注Gxl网其它相关文章!