downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

TokyoTyrantTable::getIterator> <TokyoTyrantTable::genUid
[edit] Last updated: Fri, 24 Jun 2011

view this page in

TokyoTyrantTable::get

(PECL tokyo_tyrant >= 0.1.0)

TokyoTyrantTable::getدریافت ردیف

Description

public void TokyoTyrantTable::get ( mixed $keys )

دریافت ردیف از جدول پایگاه داده. keys عدد صحیح برای کلید ویژه ردیف یا آرایه‌ای از اعداد صحیح برای چندین ردیف است.

Parameters

keys

کلید ویژه می‌تواند رشته یا عدد صحیح باشد

Return Values

بازگرداندن ردیف به عنوان آرایه

Examples

Example #1 مثال TokyoTyrantTable::get()

<?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));
?>

The above example will output:

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

Notes

Note:

با شروع از نسخه 0.3.0 این متد آرایه را به عنوان پارامتر می‌پذیرد . توجه کنید چندین دریافت در جدول‌ها از لحاظ دودویی امن نیست.

See Also



add a note add a note User Contributed Notes TokyoTyrantTable::get - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | sitemap | contact | advertising | mirror sites