How do you display a formatted Word Doc in HTML/PHP?(如何在 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?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 HTML/PHP 中显示格式化的 Word Doc?
基础教程推荐
- 在PHP中根据W3C规范Unicode 2022-01-01
- 如何替换eregi() 2022-01-01
- 如何在 Laravel 中使用 React Router? 2022-01-01
- Cron Jobs 调用带有变量的 PHP 脚本 2022-01-01
- PHP 类:全局变量作为类中的属性 2021-01-01
- 学说 dbal querybuilder 作为准备好的语句 2022-01-01
- 如何在 Laravel 5.3 注册中添加动态下拉列表列? 2021-01-01
- PHP PDO MySQL 查询 LIKE ->多个关键词 2021-01-01
- 有什么方法可以用编码 UTF-8 而不是 Unicode 返回 PHP`json_encode`? 2021-01-01
- YouTube API v3 点赞视频,但计数器不增加 2022-01-01
