Heim >Backend-Entwicklung >PHP-Tutorial >php学习笔记之将word文档转化为HTML文件

php学习笔记之将word文档转化为HTML文件

WBOY
WBOYOriginal
2016-06-23 13:33:49784Durchsuche

<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>

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn