22 lines
654 B
PHP
22 lines
654 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();
|
|
|
|
$section = $phpWord->addSection();
|
|
$section->addText(htmlspecialchars('Check box in section'));
|
|
$section->addCheckBox('chkBox1', htmlspecialchars('Checkbox 1'));
|
|
$section->addText(htmlspecialchars('Check box in table cell'));
|
|
$table = $section->addTable();
|
|
$table->addRow();
|
|
$cell = $table->addCell();
|
|
$cell->addCheckBox('chkBox2', htmlspecialchars('Checkbox 2'));
|
|
|
|
// Save file
|
|
echo write($phpWord, basename(__FILE__, '.php'), $writers);
|
|
if (!CLI) {
|
|
include_once 'Sample_Footer.php';
|
|
}
|