簡體   English   中英

使用php或html在網絡瀏覽器上顯示ms文檔

[英]Display ms document on a web browser using php or html

如何將ms word文檔顯示到Web瀏覽器,就像在html中顯示圖像的方式一樣。 我正在使用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>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM