--TEST-- 26.phpt: thead, tfoot, tbody with mixed function calls --FILE-- getHeader(); $tfoot =& $table->getFooter(); $tbody =& $table->getBody(); $thead->setHeaderContents(2, 2, 'some th content', 'bgcolor="red"'); $tfoot->setHeaderContents(1, 1, 'another th content', 'bgcolor="yellow"'); $data[0][] = 'Test'; $data[1][] = 'Test'; foreach($data as $key => $value) { $tbody->addRow($value, 'bgcolor="darkblue"'); } // output echo $table->toHTML(); ?> --EXPECT--
     
     
    some th content
     
  another th content  
Test    
Test