Код: Выделить всё
$templateProcessor = new TemplateProcessor('path to DOCX file.....');
$table = new Table(['unit' => TblWidth::AUTO]);
$table->addRow();
$table->addCell(null, [
'borderTopColor' => 'ff0000',
'borderTopSize' => 1,
'borderRightColor' => 'ff0000',
'borderRightSize' => 1,
'borderLeftColor' => 'ff0000',
'borderLeftSize' => 1,
])->addText('bla bla bla', ['Color' => 'ff0000']);
$templateProcessor->setComplexValue('{bla_bla_bla_placeholder}', $table);
Подробнее здесь: https://stackoverflow.com/questions/759 ... the-footer