TokyoTyrantTable::get
(PECL tokyo_tyrant >= 0.1.0)
TokyoTyrantTable::get — دریافت ردیف
Description
دریافت ردیف از جدول پایگاه داده. 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 این متد آرایه را به عنوان پارامتر میپذیرد . توجه کنید چندین دریافت در جدولها از لحاظ دودویی امن نیست.
There are no user contributed notes for this page.
