--TEST-- 13.phpt: 2 row 1 column, setCellContents / getCellContents --FILE-- $value) { $table->addRow($value); } echo $table->getCellContents(0, 0) . "\n"; $table->setCellContents(0, 0, 'FOOBAR'); echo $table->getCellContents(0, 0) . "\n"; // output echo $table->toHTML(); ?> --EXPECT-- Test FOOBAR
FOOBAR |