1

如何像在 html 中显示图像一样将 ms word 文档显示到 Web 浏览器。我正在使用 php 和 html,我使用 iframe 进行了尝试,但我的想法没有奏效。

<iframe name="houses" src="report.doc" width="580"></iframe>
4

2 回答 2

1

尝试这个 :

<?php
        $word = new COM("word.application") or die ("Could not initialise MS Word object.");
        $word->Documents->Open(realpath("Sample.doc"));

        // Extract content.
        $content = (string) $word->ActiveDocument->Content;

        echo $content;

        $word->ActiveDocument->Close(false);

        $word->Quit();
        $word = null;
        unset($word);   
?>

有关更多信息,请参阅

于 2013-01-17T08:30:41.673 回答
0

您可以使用 Google 文档:

<iframe src="http://docs.google.com/gview?url=http://www.example.com/report.doc"></iframe>
于 2013-01-17T08:31:59.440 回答