Sample 22 CheckBox

04:49:39 Create new PhpWord object
04:49:39 Write to Word2007 format
04:49:39 Write to ODText format
04:49:39 Write to RTF format
04:49:39 Write to HTML format
04:49:39 Write to PDF format
04:49:39 Done writing file(s)
04:49:39 Peak memory usage: 6 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();

// New section
$section $phpWord->addSection();

$section->addText('Check box in section');
$section->addCheckBox('chkBox1''Checkbox 1');
$section->addText('Check box in table cell');
$table $section->addTable();
$table->addRow();
$cell $table->addCell();
$cell->addCheckBox('chkBox2''Checkbox 2');

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