0

在我的新(PHP)项目中,我的要求是使用 php 将 ppt 和 doc 转换为 html。有人知道怎么做吗?

我搜索了很多论坛,发现我们可以通过调用OPENOFFICE软件从php代码中使用EXEC()命令将ppt转换为html。

谁能告诉我openoffice将ppt转换为html的命令是什么。

任何人都可以帮助我如何在 Windows 和 linux 服务器上完成它。我的本地机器有 Windows,服务器在 linux 中。

另外,如果有人帮助将 doc 转换为 html?

4

1 回答 1

0

在 Windows 上不会有很多问题,但在 linux 上你会有些头疼要让它工作

使用类似的东西:

$sCmd = "$sLibreOfficeBin --headless --invisible --nologo --nofirststartwizard --convert-to html --outdir $sTmpFolder "old_file.ppt";
于 2012-09-13T06:23:42.580 回答