TokyoTyrantTable
PHP Manual

TokyoTyrantTable::get

(PECL tokyo_tyrant >= Unknown)

TokyoTyrantTable::getGet a row

Açıklama

public void TokyoTyrantTable::get ( mixed $keys )

Gets a row from table database. keys is a single integer for the primary key of the row or an array of integers for multiple rows.

Değiştirgeler

keys

Single integer or an array of integers for multiple keys

Dönen Değerler

Returns the row as an array or an array of arrays for multiple keys

Örnekler

Örnek 1 TokyoTyrantTable::get 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"));

/* Get the row back */
var_dump($tt->get($index));
?>

Yukarıdaki örneğin çıktısı:

array(2) {
  ["column1"]=>
  string(9) "some data"
  ["column2"]=>
  string(9) "more data"
}

Ayrıca Bakınız


TokyoTyrantTable
PHP Manual