2012-05-06 18:25:40 +02:00
|
|
|
<?php
|
2013-12-15 13:35:17 +01:00
|
|
|
require_once '../../Classes/PHPWord.php';
|
2012-05-06 18:25:40 +02:00
|
|
|
|
|
|
|
|
// New Word Document
|
|
|
|
|
$PHPWord = new PHPWord();
|
|
|
|
|
|
|
|
|
|
// New portrait section
|
|
|
|
|
$section = $PHPWord->createSection();
|
|
|
|
|
|
|
|
|
|
// Add text elements
|
|
|
|
|
$section->addText('You can open this OLE object by double clicking on the icon:');
|
|
|
|
|
$section->addTextBreak(2);
|
|
|
|
|
|
|
|
|
|
// Add object
|
|
|
|
|
$section->addObject('_sheet.xls');
|
|
|
|
|
|
|
|
|
|
// Save File
|
|
|
|
|
$objWriter = PHPWord_IOFactory::createWriter($PHPWord, 'Word2007');
|
|
|
|
|
$objWriter->save('Object.docx');
|