12345678910111213141516171819 |
- <?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();
- $textrun = $section->addTextRun();
- $textrun->addText(htmlspecialchars('This is a Left to Right paragraph.'));
-
- $textrun = $section->addTextRun(array('align' => 'right'));
- $textrun->addText(htmlspecialchars('سلام این یک پاراگراف راست به چپ است'), array('rtl' => true));
-
- // Save file
- echo write($phpWord, basename(__FILE__, '.php'), $writers);
- if (!CLI) {
- include_once 'Sample_Footer.php';
- }
|