PHP Doku:: Puts value - tokyotyrant.putnr.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzDatenbankerweiterungenAnbieterspezifische Datenbankerweiterungentokyo_tyrantThe TokyoTyrant classTokyoTyrant::putNr

Ein Service von Reinhard Neidl - Webprogrammierung.

The TokyoTyrant class

<<TokyoTyrant::putKeep

TokyoTyrant::putShl>>

TokyoTyrant::putNr

(PECL tokyo_tyrant >= 0.1.0)

TokyoTyrant::putNrPuts value

Beschreibung

public TokyoTyrant TokyoTyrant::putNr ( mixed $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. This method does not wait for the response from the server.

Parameter-Liste

keys

A string key or an array of key-value pairs

value

The value in case a string key is used

Rückgabewerte

This method returns a reference to the current object and throws TokyoTyrantException on failure.

Beispiele

Beispiel #1 TokyoTyrant::putNr() example

<?php
/* Connect to a database on default port */
$tt = new TokyoTyrant("localhost");

/* Put single key-value pair */
$tt->putNr("key""value");

/* Put key-value pairs */
$tt->putNr(array("key1" => "value1""key2" => "value2"));

/* Get back one key */
echo $tt->get("key1");
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

value1

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)