--TEST-- 11.phpt: 2 row 1 column, setAutoFill / getAutoFill --FILE-- setAutoFill('N/A'); $data[0][] = 'Test'; $data[1][] = ''; foreach($data as $key => $value) { $table->addRow($value); } echo $table->getAutoFill() . "\n"; // output echo $table->toHTML(); ?> --EXPECT-- N/A
Test |
N/A |