如何使用php与openoffice进行通信

发布于 2024-12-07 14:14:03 字数 85 浏览 1 评论 0原文

我有 ubuntu 并安装了 openoffice。有什么方法可以使用 php 将我的文档转换为 odf 吗?有没有办法让php与已安装的应用程序进行通信?

I am having ubuntu and have openoffice installed. Is there any way I can use php to convert my docs to odf? Is there any way to make php communicate with installed app?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

千里故人稀 2024-12-14 14:14:03

你需要的一切都是 PyODConverter (http://artofsolving.com/opensource/pyodconverter)

这是通过命令行使用 OpenOffice/LibreOffice 转换文档的简单快捷的方法。您可以使用 exec() 从 PHP 传递命令

1) 使用 libreoffice -headless -accept="socket,host=127.0.0.1,port=8100;urp;" 在服务器上将 Openoffice 作为服务启动-nofirststartwizard。将命令“libreoffice”更改为“soffice”(对于 openoffice,如果有的话)。

2) 下载 DocumentConverter.py 并像这样使用它: python DocumentConverter.py test.docx test.odf

就是这样。

Everything you need is PyODConverter (http://artofsolving.com/opensource/pyodconverter)

It is simple and fast way to convert documents using OpenOffice/LibreOffice via command line. You can pass the command from PHP using exec()

1) Start Openoffice on server as a service using libreoffice -headless -accept="socket,host=127.0.0.1,port=8100;urp;" -nofirststartwizard. Change command "libreoffice" to "soffice" (for openoffice, if you have one).

2) Download DocumentConverter.py and use it like this: python DocumentConverter.py test.docx test.odf

And that's it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文