如何在 HTML/PHP 中显示格式化的 Word Doc? [英] How do you display a formatted Word Doc in HTML/PHP?

查看:27
本文介绍了如何在 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.

这篇关于如何在 HTML/PHP 中显示格式化的 Word Doc?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆