如何像在 html 中显示图像一样将 ms word 文档显示到 Web 浏览器。我正在使用 php 和 html,我使用 iframe 进行了尝试,但我的想法没有奏效。
<iframe name="houses" src="report.doc" width="580"></iframe>
尝试这个 :
<?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);
?>
有关更多信息,请参阅 此
您可以使用 Google 文档:
<iframe src="http://docs.google.com/gview?url=http://www.example.com/report.doc"></iframe>