table_open() public method

Start a table
public table_open ( integer $maxcols = null, integer $numrows = null, integer $pos = null, string | string[] $classes = null )
$maxcols integer maximum number of columns
$numrows integer NOT IMPLEMENTED
$pos integer byte position in the original source
$classes string | string[] css classes - have to be valid, do not pass unfiltered user input
示例#1
0
 function table_open($maxcols = null, $numrows = null, $pos = null)
 {
     $this->doc .= "\n<span class='np_break'>&nbsp;</span>\n";
     parent::table_open($maxcols = null, $numrows = null, $pos = null);
 }