<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>将word文档转化为HTML文件</title></head><body><p> <?phpfunction wordtohtml($wfilepath) { $word=new com("word.application") or die("无法打开 ms word"); $word->visible = 1 ; $word->documents->open($wfilepath)or die("无法打开这个文件"); $htmlpath = substr($wfilepath,0,-4); $word->activedocument->saveas($htmlpath,8); $word->quit(0); return $htmlpath; } $str1 = "test";$w="e:/appserv/www/yougan/" . $str1 . ".doc"; $path = wordtohtml($w) . ".htm"; echo $path . "<br/>";print( "word转html完成!" );$str2 = $str1 . ".htm";echo "<script>window.location.href='". $str2 . "';</script>";?></body></html>
全网最新最细最实用WPS零基础入门到精通全套教程!带你真正掌握WPS办公! 内含Excel基础操作、函数设计、数据透视表等
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号