Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17199 программистов и 1835 роботов. Сейчас ищут 1565 программистов ...
HTML_Table::setColType()
Вернуться к: HTML_Table
HTML_Table::setColType()
HTML_Table::setColType() – Set column type
Synopsis
require_once 'HTML/Table.php';
void HTML_Table::setColType ( int $col , string $type , int $body = null )
Sets the type of a column to 'th' or 'td'
Parameter
-
int $col - Column index
-
string $type - th or td
-
int $body - The number of the tbody group that should be used. NULL indicates that all groups should be used.
Note
This function can not be called statically.
Вернуться к: HTML_Table