odsPhpGenerator

EXAMPLES : Hello world

Hello world

2016-04-15 : Laurent VUIBERT
1 table with 1 col and 2 rows


// Load library
require_once 'ods0.0.3/vendor/autoload.php';

use 
odsPhpGenerator\ods;
use 
odsPhpGenerator\odsTable;
use 
odsPhpGenerator\odsTableRow;
use 
odsPhpGenerator\odsTableCellString;

// Create Ods object
$ods  = new ods();

// Create table named 'table 1'
$table = new odsTable('table 1');

// Create the first row
$row   = new odsTableRow();

// Create and add 2 cell 'Hello' and 'World'
$row->addCell( new odsTableCellString("Hello") );
$row->addCell( new odsTableCellString("World") );

// Attach row to table
$table->addRow($row);

// Attach talble to ods
$ods->addTable($table);

// Download the file
$ods->downloadOdsFile("HelloWorld.ods");