使用php在读取模式下打开Word文档?

时间:2011-08-22 06:54:04

标签: php

我想使用PHP在浏览器中阅读Word文档。 我已经尝试了两个多小时,但我无法让它工作。 有人可以帮我这么做吗?

1 个答案:

答案 0 :(得分:2)

由于您对特定要求或服务器设置的问题不太详细,因此您可以开始使用此功能。也回答了这个问题。

<?php
$DocumentPath="C:/xampp/htdocs/test.doc";
//Create an instance of the Word application
$word = new COM("word.application") or die("Unable to instantiate application object");
//Creating an instance of the Word Document object
$wordDocument = new COM("word.document") or die("Unable to instantiate document object");
$word->Visible = 0;
//Open up an empty document
$wordDocument = $word->Documents->Open($DocumentPath);

//Create the filename for the HTML version
$HTMLPath = substr_replace($DocumentPath, 'html', -3, 3);
//Save the document as HTML
$wordDocument->SaveAs($HTMLPath, 3);
// clean up
$wordDocument = null;
$word->Quit();
$word = null;
// read the newly-created document
readfile($HTMLPath);
//delete the file
unlink($HTMLPath)
?>