26 lines
752 B
PHP
26 lines
752 B
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();
|
|
|
|
$document = $phpWord->loadTemplate('resources/Sample_23_TemplateBlock.docx');
|
|
|
|
// Will clone everything between ${tag} and ${/tag}, the number of times. By default, 1.
|
|
$document->cloneBlock('CLONEME', 3);
|
|
|
|
// Everything between ${tag} and ${/tag}, will be deleted/erased.
|
|
$document->deleteBlock('DELETEME');
|
|
|
|
$name = 'Sample_23_TemplateBlock.docx';
|
|
echo date('H:i:s'), " Write to Word2007 format", EOL;
|
|
$document->saveAs($name);
|
|
rename($name, "results/{$name}");
|
|
|
|
$writers = array('Word2007' => 'docx');
|
|
echo getEndingNotes($writers);
|
|
if (!CLI) {
|
|
include_once 'Sample_Footer.php';
|
|
}
|