如何使用php与openoffice进行通信
我有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你需要的一切都是 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.