convertapi中的powerpoint2pdf的php代码无法正常工作

时间:2015-06-18 07:38:11

标签: php curl convertapi

我使用以下内容将doc文件转换为PHP格式的pdf:

$ch = curl_init("http://do.convertapi.com/word2pdf"); 

我现在想用同样的方法将ppt转换为pdf。为此我改变了

$ch = curl_init("http://do.convertapi.com/PowerPoint2Pdf");

Failed with the exception java.io.IOException:org.apache.hadoop.mapred.InvalidInputException:Input Pattern file:/tmp/${hduser}/034cbea3-2b60-49f5-8284-d6fba957dda3/hive_2015-06-18_05-10-04_183_5811447541305606525-1/-local-10000 matches 0 files

但我不确定为什么它不能转换给定的输入。有什么东西我可能会失踪吗?

1 个答案:

答案 0 :(得分:0)

由于PHP 5.6。

您还需要在代码中添加此行

curl_setopt($ch, CURLOPT_SAFE_UPLOAD, false);

请参阅:Backward incompatible changes(位于底部)。