©
本文档使用
php.cn手册 发布
(PECL tokyo_tyrant >= 0.1.0)
TokyoTyrantTable::put — Store a row
$key
, array $columns
)
Puts a new row into the database. This method parameters are key
which is
the primary key of the row, passing NULL
will generate a new unique id. value
is an array containing the row contents which is usually key value pairs.
key
The primary key of the row
columns
The row contents
Returns the primary key on success and throws TokyoTyrantException on error
Example #1 TokyoTyrantTable::put() example
<?php
$tt = new TokyoTyrantTable ( "localhost" , 1979 );
$index = $tt -> put ( null , array( "column1" => "some data" , "column2" => "more data" ));
var_dump ( $tt -> get ( $index ));
$tt -> put ( $index , array( "column1" => "other data" , "column2" => "better data" ));
var_dump ( $tt -> get ( $index ));
?>
以上例程会输出:
array(2) { ["column1"]=> string(9) "some data" ["column2"]=> string(9) "more data" } array(2) { ["column1"]=> string(10) "other data" ["column2"]=> string(11) "better data" }
[#1] fincantieri at outlook dot com [2015-04-25 05:52:04]
can TokyoTyrantTable (putkeep/get) use without an array?.. like in php mysql, inserting records and displaying item without using array methods..