PHP Doku:: Remove records - tokyotyranttable.out.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzDatenbankerweiterungenAnbieterspezifische Datenbankerweiterungentokyo_tyrantThe TokyoTyrantTable classTokyoTyrantTable::out

Ein Service von Reinhard Neidl - Webprogrammierung.

The TokyoTyrantTable class

<<TokyoTyrantTable::getQuery

TokyoTyrantTable::put>>

TokyoTyrantTable::out

(PECL tokyo_tyrant >= 0.1.0)

TokyoTyrantTable::outRemove records

Beschreibung

public void TokyoTyrantTable::out ( mixed $keys )

Removes records from a table database.

Parameter-Liste

keys

A single integer key or an array of integers

Rückgabewerte

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

Beispiele

Beispiel #1 TokyoTyrantTable::out() example

<?php
/* Connect to a table database */
$tt = new TokyoTyrantTable("localhost"1979);

/* Passing null to put generates a new uid */
$index $tt->put(null, array("column1" => "some data""column2" => "more data"));

/* Delete the row */
$tt->out($index);
?>

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",...)