聘我网

新概念招聘3.0

PHP实现word转pdf

vote up0vote downstar

由于需要把一份word报价单转化成pdf版本,

临时搜了下,结果有所收获:

  1. 下载Zend Framework 1.10或者更新版本
  2. 下载后cd/demos/Zend/Service/LiveDocx/MailMerge/convert/.
  3. 运行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);
 

您的回答





不是您要找的问题? 浏览其他含有标签 的问题或者 自己问个.