如何在 HTML/PHP 中显示格式化的 Word Doc?
在 HTML/PHP 中显示格式化 Word 文档的最佳方式是什么?
What is the best way to display a formatted Word Doc in HTML/PHP?
这是我目前拥有的代码,但没有对其进行格式化:
Here is the code I currently have but it doesn't format it:
$word = new COM("word.application") or die ("Could not initialise MS Word object.");
$word->Documents->Open(realpath("ACME.doc"));
// Extract content.
$content = (string) $word->ActiveDocument->Content;
echo $content;
$word->ActiveDocument->Close(false);
$word->Quit();
$word = null;
unset($word);
推荐答案
我对 COM 一无所知,但是在 MSDN 上翻阅 Word API 文档,看起来您最好的选择是使用 Document.SaveAs
另存为 wsFormatFilteredHTML
到一个临时文件,然后将该 HTML 提供给用户.请务必选择过滤 HTML,否则您将获得有史以来最浓的标签.
I know nothing about COM, but poking around the Word API docs on MSDN, it looks like your best bet is going to be using Document.SaveAs
to save as wsFormatFilteredHTML
to a temporary file, then serving that HTML to the user. Be sure to pick the filtered HTML, otherwise you're going to get the soupiest tag soup ever.
相关文章