예제
Basic usage
Example #1 Putting and getting a key-value pair
<?php
$tt = new TokyoTyrant("localhost");
$tt->put("key", "value");
echo $tt->get("key");
?>
위 예제의 출력:
value
There are no user contributed notes for this page.
Basic usage
Example #1 Putting and getting a key-value pair
<?php
$tt = new TokyoTyrant("localhost");
$tt->put("key", "value");
echo $tt->get("key");
?>
위 예제의 출력:
value