Object.php 448 B

1234567891011121314151617181920
  1. <?php
  2. require_once '../PHPWord.php';
  3. // New Word Document
  4. $PHPWord = new PHPWord();
  5. // New portrait section
  6. $section = $PHPWord->createSection();
  7. // Add text elements
  8. $section->addText('You can open this OLE object by double clicking on the icon:');
  9. $section->addTextBreak(2);
  10. // Add object
  11. $section->addObject('_sheet.xls');
  12. // Save File
  13. $objWriter = PHPWord_IOFactory::createWriter($PHPWord, 'Word2007');
  14. $objWriter->save('Object.docx');
  15. ?>