文字

TokyoTyrantTable::get

(PECL tokyo_tyrant >= 0.1.0)

TokyoTyrantTable::getGet a row

说明

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.

参数

keys

The primary key, can be a string or an integer

返回值

Returns the row as an array

范例

Example #1 TokyoTyrantTable::get() example

<?php

$tt  = new  TokyoTyrantTable ( "localhost" 1979 );


$index  $tt -> put ( null , array( "column1"  =>  "some data" "column2"  =>  "more data" ));


var_dump ( $tt -> get ( $index ));
?>

以上例程会输出:

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

注释

Note:

Starting from version 0.3.0 this method accepts array as parameter. Please note that multi-get on tables is not binary-safe.

参见

  • TokyoTyrantTable::put() - Store a row
上一篇: 下一篇: