我正在尝试将 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
请帮助我