PHP Velho Oeste 2024

Ejemplos

Basic usage

Ejemplo #1 Putting and getting a key-value pair

<?php
$tt 
= new TokyoTyrant("localhost");
$tt->put("key""value");
echo 
$tt->get("key");
?>

El resultado del ejemplo serĂ­a:

value
add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top