PHP 4 到 Microsoft Word
我正在使用 PHP 4.4.9 的服务器(不使用 PHP 5 并且我无法升级) 我需要编写一个操作,将现有的 PHP 页面转换为外观相似的 Word 文档。
我怎么能做这样的事呢?
I'm working on a server that is using PHP 4.4.9(doesn't use PHP 5 and I can't upgrade)
I need to write a action that will take an existing PHP page and convert it to a similar looking word document.
How can I do such a thing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
更新
显然,在 PHP4 下将 HTML 转换为 DOC 的唯一可靠方法是使用外部工具并通过 exec:
一种选择是获取 HTML 输出并提供给它到 PDF 转换器。它并不完全是一个 Word 文档,但可能可以解决问题。
对于 PHP4:
Update
Apparently the only surefire way to convert HTML to DOC under PHP4 would be to use an external tool and call it through exec:
One option would be to grab HTML output and feed it to a PDF converter. It isn't exactly a Word document but just might do the trick.
For PHP4: