Hello,
Please try using the TransformDocAdv class. First create the document:
require_once '/var/www/app/phpdocx/classes/CreateDocx.inc';
$docx = new CreateDocx();
$docx->addTemplate('docx_template.docx');
$docx->addTemplateVariable('TIMESTAMP', date('l F, Y | g:i a'));
$docx->addTemplateVariable('CLIENT', 'Client Name Inc.');
$docx->createDocx('outfile');
But to do the transformation use the TransformDocAdv class:
$transform = new TransformDocAdv();
$transform->transformDocument('input.docx', 'output.pdf');
Regards. Jorge.