Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17165 программистов и 1833 робота. Сейчас ищет 1691 программист ...
Console_Table::addCol
Вернуться к: Console_Table
Console_Table::addCol
Console_Table::addCol() – Adds a column to the table
Synopsis
require_once 'Console/Table.php';
void Console_Table::addCol ( array $col_data , integer $col_id , integer $row_id )
Adds a column to the table
Parameter
- array $col_data
-
The data of the column. Can be numeric or associative array
- integer $col_id
-
The column index to populate
- integer $row_id
-
If starting row is not zero, specify it here
Throws
No exceptions thrown.
Note
This function can not be called statically.
Вернуться к: Console_Table