由于需要把一份word报价单转化成pdf版本,
临时搜了下,结果有所收获:
- 下载Zend Framework 1.10或者更新版本
- 下载后
cd到/demos/Zend/Service/LiveDocx/MailMerge/convert/. - 运行
php convert-document.php(需要启用php_soap,php_openssl),然后按照提示操作
convert-document.php内容为:
$phpLiveDocx = new Zend_Service_LiveDocx_MailMerge();
$phpLiveDocx->setUsername('username')
->setPassword('password');
$phpLiveDocx->setLocalTemplate('document.doc');
// necessary as of LiveDocx 1.2
$phpLiveDocx->assign('dummyFieldName', 'dummyFieldValue');
$phpLiveDocx->createDocument();
$document = $phpLiveDocx->retrieveDocument('pdf');
file_put_contents('document.pdf', $document);
unset($phpLiveDocx);
