add exmpales
[pear-examples] / Document_Word_Writer / Examples / Object.php
1 <?php
2 ini_set('include_path', __DIR__  . '/../../..:.');
3 require_once __DIR__ . '/../Writer.php';
4
5 // New Word Document
6 $PHPWord = new Document_Word_Writer();
7
8 // New portrait section
9 $section = $PHPWord->createSection();
10
11 // Add text elements
12 $section->addText('You can open this OLE object by double clicking on the icon:');
13 $section->addTextBreak(2);
14
15 // Add object
16 $section->addObject('_sheet.xls');
17
18 // Save File
19 require_once __DIR__ . '/../Writer/IOFactory.php';
20 $objWriter = Document_Word_Writer_IOFactory::createWriter($PHPWord, 'Word2007');
21 $objWriter->save('/tmp/Object.docx');
22 ?>