<meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>将word文档转化为HTML文件</title><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>";?></p>