使用Php

时间:2019-05-02 06:09:56

标签: php

我想使用PHP将Word文件转换为PDF。  基本上,它对我在本地主机上的工作正常。但不能现场直播  服务器。     我的代码是

  $word = new COM("Word.Application") or die ("Could not initialise

  Object.");
  $word->Visible = 0;
  $word->DisplayAlerts = 0;
  $rand = (rand(100000,100000000));
  $word->Documents->Open('Test.docx');
  $word->ActiveDocument->SaveAs('files/'.$rand.'.doc');
  $result=
  $word->ActiveDocument-ExportAsFixedFormat('files/'.$rand.'.pdf', 17, 
  false, 0, 0, 0, 0, 7, true, true, 2, true, true, false); 
  $word->Quit(false);
  unset($word);
  echo "done";

在本地主机上对我来说工作正常,但在实时服务器上却出现以下错误 此页面无效 multibizservices.com当前无法处理此请求。 HTTP错误500

0 个答案:

没有答案