我在 PHP 中编写了一个函数来转换doc
为pdf
,但它不起作用。一开始,我的功能起作用了,虽然它没有关闭Winword.exe
,但我手动关闭了它。
现在,当我使用此功能打开站点页面时,Apache 停止工作。
$word = new COM('word.application');
$word->Visible = 0;
$word->Documents->Open('C:\Apache\smena3.krw.rzd\www\docnz\oblachnye.docx');
$word->Documents[1]->SaveAs(APPLICATION_DOCNZ_FOLDER.'\oblachnye.pdf',17);
$word->Quit('0','0','0');
$word = null;
$this->render('docnz');