2014-08-12 13:32:05 +02:00
|
|
|
<?php
|
|
|
|
|
include_once 'Sample_Header.php';
|
|
|
|
|
|
|
|
|
|
// New Word document
|
2015-01-01 20:41:42 +04:00
|
|
|
echo date('H:i:s'), ' Create new PhpWord object', EOL;
|
2014-08-12 13:32:05 +02:00
|
|
|
$phpWord = new \PhpOffice\PhpWord\PhpWord();
|
|
|
|
|
|
|
|
|
|
$section = $phpWord->addSection();
|
|
|
|
|
$textrun = $section->addTextRun();
|
2015-02-06 22:28:31 +04:00
|
|
|
$textrun->addText(htmlspecialchars('This is a Left to Right paragraph.', ENT_COMPAT, 'UTF-8'));
|
2014-08-12 13:32:05 +02:00
|
|
|
|
2015-10-10 19:06:23 +04:00
|
|
|
$textrun = $section->addTextRun(array('alignment' => \PhpOffice\PhpWord\SimpleType\ST_Jc::END));
|
2015-02-06 22:28:31 +04:00
|
|
|
$textrun->addText(htmlspecialchars('سلام این یک پاراگراف راست به چپ است', ENT_COMPAT, 'UTF-8'), array('rtl' => true));
|
2014-08-12 13:32:05 +02:00
|
|
|
|
|
|
|
|
// Save file
|
|
|
|
|
echo write($phpWord, basename(__FILE__, '.php'), $writers);
|
|
|
|
|
if (!CLI) {
|
|
|
|
|
include_once 'Sample_Footer.php';
|
|
|
|
|
}
|