58 lines
2.3 KiB
PHP
58 lines
2.3 KiB
PHP
<?php
|
|
include_once 'Sample_Header.php';
|
|
|
|
// New Word document
|
|
echo date('H:i:s'), " Create new PhpWord object", \EOL;
|
|
$phpWord = new \PhpOffice\PhpWord\PhpWord();
|
|
|
|
// Begin code
|
|
$section = $phpWord->addSection();
|
|
|
|
// Add listitem elements
|
|
$section->addListItem('List Item 1', 0);
|
|
$section->addListItem('List Item 2', 0);
|
|
$section->addListItem('List Item 3', 0);
|
|
$section->addTextBreak(2);
|
|
|
|
// Add listitem elements
|
|
$section->addListItem('List Item 1', 0);
|
|
$section->addListItem('List Item 1.1', 1);
|
|
$section->addListItem('List Item 1.2', 1);
|
|
$section->addListItem('List Item 1.3 (styled)', 1, array('bold'=>true));
|
|
$section->addListItem('List Item 1.3.1', 2);
|
|
$section->addListItem('List Item 1.3.2', 2);
|
|
$section->addTextBreak(2);
|
|
|
|
// Add listitem elements
|
|
$listStyle = array('listType' => \PhpOffice\PhpWord\Style\ListItem::TYPE_NUMBER);
|
|
$section->addListItem('List Item 1', 0, null, $listStyle);
|
|
$section->addListItem('List Item 2', 0, null, $listStyle);
|
|
$section->addListItem('List Item 3', 0, null, $listStyle);
|
|
$section->addTextBreak(2);
|
|
|
|
// Add listitem elements
|
|
$phpWord->addFontStyle('myOwnStyle', array('color'=>'FF0000'));
|
|
$phpWord->addParagraphStyle('P-Style', array('spaceAfter'=>95));
|
|
$listStyle = array('listType' => \PhpOffice\PhpWord\Style\ListItem::TYPE_NUMBER_NESTED);
|
|
$section->addListItem('List Item 1', 0, 'myOwnStyle', $listStyle, 'P-Style');
|
|
$section->addListItem('List Item 2', 0, 'myOwnStyle', $listStyle, 'P-Style');
|
|
$section->addListItem('List Item 3', 1, 'myOwnStyle', $listStyle, 'P-Style');
|
|
$section->addListItem('List Item 4', 1, 'myOwnStyle', $listStyle, 'P-Style');
|
|
$section->addListItem('List Item 5', 2, 'myOwnStyle', $listStyle, 'P-Style');
|
|
$section->addListItem('List Item 6', 1, 'myOwnStyle', $listStyle, 'P-Style');
|
|
$section->addListItem('List Item 7', 0, 'myOwnStyle', $listStyle, 'P-Style');
|
|
|
|
// End code
|
|
|
|
// Save file
|
|
$name = basename(__FILE__, '.php');
|
|
$writers = array('Word2007' => 'docx', 'ODText' => 'odt', 'RTF' => 'rtf');
|
|
foreach ($writers as $writer => $extension) {
|
|
echo date('H:i:s'), " Write to {$writer} format", \EOL;
|
|
$xmlWriter = \PhpOffice\PhpWord\IOFactory::createWriter($phpWord, $writer);
|
|
$xmlWriter->save("{$name}.{$extension}");
|
|
rename("{$name}.{$extension}", "results/{$name}.{$extension}");
|
|
}
|
|
|
|
include_once 'Sample_Footer.php';
|