【发布时间】:2017-04-21 05:57:19
【问题描述】:
我正在尝试将 word(doc, docx) 文档转换为 pdf,但它没有发生....我用过
<?php
$oLoader = new COM("easyPDF.Loader.6");
try
{
$oPrinter = $oLoader->LoadObject("easyPDF.Printer.6");
$oPrintJob = $oPrinter->PrintJob;
$oPrintJob->PrintOut("F:\wamp\www\index\q.docx", "F:\wamp\www\index\q.pdf");
print "Success";
}
catch(com_exception $e)
{
print "error code".$e->getcode(). "\n";
print $e->getMessage();
}
?>
这段代码,但它返回的错误类似于
Fatal error: Uncaught exception 'com_exception' with message 'Failed to create COM object `easyPDF.Loader.6' in F:\wamp\www\index\index.php on line 2
com_exception: Failed to create COM object `easyPDF.Loader.6': Invalid syntax in F:\wamp\www\index\index.php on line 2
请帮帮我
【问题讨论】: