1. 程式人生 > >php學習筆記之將word文件轉化為HTML檔案

php學習筆記之將word文件轉化為HTML檔案

<!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>
  <?PHP

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