Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这段代码:
$data = array(array('row1'=>'row2')); $this->ezTable($data, null, '', array('width'=>'460', 'fontSize'=>'8', 'showLines'=>'1'));
显示一个有 2 行和 1 列的表格。
我需要一个只有一行一列的表格,或者一个文本周围有四个边框(顶部、底部、右侧和左侧)。
我怎样才能做到这一点?
$this->ezTable($data, null, '', array('width'=>'460', 'fontSize'=>'8', 'showLines'=>'1','showHeadings'=>0));