56 lines
2.0 KiB
PHP
Executable File
56 lines
2.0 KiB
PHP
Executable File
<?php
|
|
|
|
error_reporting(E_ALL);
|
|
|
|
if(php_sapi_name() == 'cli' && empty($_SERVER['REMOTE_ADDR'])) {
|
|
define('EOL', PHP_EOL);
|
|
} else {
|
|
define('EOL', '<br />');
|
|
}
|
|
|
|
require_once '../Classes/PHPWord.php';
|
|
|
|
// New Word Document
|
|
echo date('H:i:s') , ' Create new PHPWord object' , EOL;
|
|
$PHPWord = new PHPWord();
|
|
|
|
// New portrait section
|
|
$section = $PHPWord->createSection(array('borderColor' => '00FF00', 'borderSize' => 12));
|
|
$section->addText('I am placed on a default section.');
|
|
|
|
// New landscape section
|
|
$section = $PHPWord->createSection(array('orientation' => 'landscape'));
|
|
$section->addText('I am placed on a landscape section. Every page starting from this section will be landscape style.');
|
|
$section->addPageBreak();
|
|
$section->addPageBreak();
|
|
|
|
// New portrait section
|
|
$section = $PHPWord->createSection(array('marginLeft' => 600, 'marginRight' => 600, 'marginTop' => 600, 'marginBottom' => 600));
|
|
$section->addText('This section uses other margins.');
|
|
|
|
// New portrait section with Header & Footer
|
|
$section = $PHPWord->createSection(array('marginLeft' => 200, 'marginRight' => 200, 'marginTop' => 200, 'marginBottom' => 200, 'headerHeight' => 50, 'footerHeight' => 50,));
|
|
$section->addText('This section and we play with header/footer height.');
|
|
$section->createHeader()->addText('Header');
|
|
$section->createFooter()->addText('Footer');
|
|
|
|
// Save File
|
|
echo date('H:i:s') , ' Write to Word2007 format' , EOL;
|
|
$objWriter = PHPWord_IOFactory::createWriter($PHPWord, 'Word2007');
|
|
$objWriter->save(str_replace('.php', '.docx', __FILE__));
|
|
|
|
/*echo date('H:i:s') , ' Write to OpenDocumentText format' , EOL;
|
|
$objWriter = PHPWord_IOFactory::createWriter($PHPWord, 'ODText');
|
|
$objWriter->save(str_replace('.php', '.odt', __FILE__));
|
|
|
|
echo date('H:i:s') , ' Write to RTF format' , EOL;
|
|
$objWriter = PHPWord_IOFactory::createWriter($PHPWord, 'RTF');
|
|
$objWriter->save(str_replace('.php', '.rtf', __FILE__));*/
|
|
|
|
|
|
// Echo memory peak usage
|
|
echo date('H:i:s') , ' Peak memory usage: ' , (memory_get_peak_usage(true) / 1024 / 1024) , ' MB' , EOL;
|
|
|
|
// Echo done
|
|
echo date('H:i:s') , ' Done writing file' , EOL;
|