20 lines
696 B
PHP
20 lines
696 B
PHP
<?php
|
|
include_once 'Sample_Header.php';
|
|
|
|
// Read contents
|
|
$name = basename(__FILE__, '.php');
|
|
$source = "resources/{$name}.doc";
|
|
echo date('H:i:s'), " Reading contents from `{$source}`", EOL;
|
|
$phpWord = \PhpOffice\PhpWord\IOFactory::load($source, 'Word97');
|
|
|
|
// (Re)write contents
|
|
/*$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';
|