update : 2015.11.03
php.shukuma.com검색:
|
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. 예제
Example #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" } |