Код: Выделить всё
$phpWord = new \PhpOffice\PhpWord\PhpWord();
$section = $phpWord->addSection();
$fontStyle = array('name' => 'Times New Roman', 'size' => 12);
$paragraphStyle = array('indentation' => ['firstLine' => 400]);
$section->addText(
'This is the first paragraph with a first line indent.',
$fontStyle,
$paragraphStyle
);
Подробнее здесь: https://stackoverflow.com/questions/798 ... ne-problem
Мобильная версия