--TEST-- 14.phpt: 3 row 3 column, setColCount / getColCount / setRowCount / getRowCount --FILE-- $value) { $table->addRow($value, 'bgcolor = "yellow"'); } echo $table->getRowCount() . "\n"; echo $table->getColCount() . "\n"; echo $table->setRowCount(2); echo $table->setColCount(2); echo $table->getRowCount() . "\n"; echo $table->getColCount() . "\n"; // output echo $table->toHTML(); ?> --EXPECT-- 3 3 2 2
Foo Bar
Foo Bar