我正在使用pdftohtml将 pdf 文件动态转换为 html 文件,我通过 linux 服务器上的 PHP 执行此操作。
我使用以下代码来测试 pdf 到 html 的转换:
$output = shell_exec("cd pdftohtml_linux; pdftohtml test.pdf");
它不起作用,echo $output
也不会输出任何东西,尽管任何其他 linux 命令(例如ls
and )make
都可以正常工作并显示相应的输出。
奇怪的是,完全相同的代码在 ubuntu 12.04 上的 localhost 上运行起来就像一个魅力,生成了 html 文件,并且shell_exec()
记录了页数和其他一些东西的一些输出。根据phpinfo()
web服务器的系统是:Linux infong 2.4 #1 SMP
关于如何让它工作的任何想法?