Sample 19 TextBreak

04:41:41 Create new PhpWord object
04:41:41 Write to Word2007 format
04:41:41 Write to ODText format
04:41:41 Write to RTF format
04:41:41 Write to HTML format
04:41:41 Write to PDF format
04:41:41 Done writing file(s)
04:41:41 Peak memory usage: 8 MB

 

Results: docx odt rtf html pdf


<?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(1null$paragraphStyleName);
$section->addText('Text break with inline font style:');
$section->addTextBreak(1$fontStyle24);
$section->addText('Text break with inline paragraph style:');
$section->addTextBreak(1null$paragraphStyle24);
$section->addText('Done.');

// Save file
echo write($phpWordbasename(__FILE__'.php'), $writers);
if (!
CLI) {
    include_once 
'Sample_Footer.php';
}