Results: docx odt rtf html epub
<?php include_once 'Sample_Header.php'; // New Word document echo date('H:i:s'), ' Create new PhpWord object', EOL; $phpWord = new PhpOffice\PhpWord\PhpWord(); // Define styles $fontStyle24 = ['size' => 24]; $paragraphStyle24 = ['spacing' => 240, 'size' => 24]; $fontStyleName = 'fontStyle'; $phpWord->addFontStyle($fontStyleName, ['size' => 9]); $paragraphStyleName = 'paragraphStyle'; $phpWord->addParagraphStyle($paragraphStyleName, ['spacing' => 480]); // New section $section = $phpWord->addSection(); $section->addText('Text break with no style:'); $section->addTextBreak(); $section->addText('Text break with defined font style:'); $section->addTextBreak(1, $fontStyleName); $section->addText('Text break with defined paragraph style:'); $section->addTextBreak(1, null, $paragraphStyleName); $section->addText('Text break with inline font style:'); $section->addTextBreak(1, $fontStyle24); $section->addText('Text break with inline paragraph style:'); $section->addTextBreak(1, null, $paragraphStyle24); $section->addText('Done.'); // Save file echo write($phpWord, basename(__FILE__, '.php'), $writers); if (!CLI) { include_once 'Sample_Footer.php'; }