Код: Выделить всё
$phpWord = new \PhpOffice\PhpWord\PhpWord();
$section = $phpWord->addSection();
$html = "
name
John
";
\PhpOffice\PhpWord\Shared\Html::addHtml($section, $html );
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment;filename="test.docx"');
$objWriter = \PhpOffice\PhpWord\IOFactory::createWriter($phpWord, 'Word2007');
$objWriter->save('php://output');
это событие не работает при добавлении стиля. пожалуйста, помогите
Подробнее здесь: https://stackoverflow.com/questions/600 ... le-phpword
Мобильная версия