我想用php在linux中将ppt或pptx转换为pdf,我正在使用以下命令
使用 LibreOffice:
exec('soffice --headless --convert-to pdf:"draw_pdf_Export" /home/test/public_html/converted/presentation1.ppt',$o1,$r1);
使用 OpenOffice:
exec("/usr/bin/openoffice.org -f pdf /home/yocook/public_html/converted/test.doc --outdir /home/yocook/public_html/converted",$output1,$ret1);
并且它们都返回 0 这应该是真值,但我在输出目录中找不到转换后的 pdf 文件。我确实检查了文件夹权限并将其设置为 755 和 777 仍然没有文件写入目录中。
- 我的 Linux 版本:2.6.32
- PHP版本:5.3.13