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?


- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- PHP foreach() 与数组中的数组? 2022-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- PHP - if 语句中的倒序 2021-01-01
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01