©
This document uses PHP Chinese website manual Release
(PECL tokyo_tyrant >= 0.1.0)
TokyoTyrant::put — Puts values
$keys
[, string $value
= NULL
] )
Puts a key-value pair into the database or multiple key-value pairs. If keys
is
string then the second parameter value defines the value.
The second parameter is mandatory if keys
is a string. If the key exists the value
will be replaced with new value.
keys
A string key or an array of key-value pairs
value
The value in case a string key is used
This method returns a reference to the current object and throws TokyoTyrantException on failure.
Example #1 TokyoTyrant::put() example
<?php
$tt = new TokyoTyrant ( "localhost" );
$tt -> put ( "key" , "value" );
$tt -> put (array( "key1" => "value1" , "key" => "value2" ));
echo $tt -> get ( "key" );
?>
以上例程会输出:
value2