TokyoTyrantTable::putCat(PECL tokyo_tyrant >= 0.1.0) TokyoTyrantTable::putCat — Concatenates to a row Описание
public void TokyoTyrantTable::putCat
( string $key
, array $columns
)
This method can be used to add new columns to existing records. Existing keys will be left unmodified but any new columns will be appended to the row. Passing null as key will generate a new row. Список параметров
Возвращаемые значенияReturns the primary key and throws TokyoTyrantException on error. Примеры
Пример #1 TokyoTyrantTable::putCat() example
<?phpРезультат выполнения данного примера:
array(2) {
["column1"]=>
string(9) "some data"
["column2"]=>
string(9) "more data"
}
array(3) {
["column1"]=>
string(9) "some data"
["column2"]=>
string(9) "more data"
["new_column"]=>
string(10) "other data"
}
|
||