(无版本信息可用,可能仅在 Git 中)
Collection::getOne — 获取一个文档
从集合中获取一个文档。
这是以下代码的快捷方式:Collection.find("_id = :id").bind("id", id).execute().fetchOne();
id
集合中的文档 _id。
集合对象,如果 _id 不匹配任何文档,则为 null
。
示例 #1 mysql_xdevapi\Collection::getOne() 示例
<?php
$session = mysql_xdevapi\getSession("mysqlx://user:password@localhost");
$session->sql("DROP DATABASE IF EXISTS addressbook")->execute();
$session->sql("CREATE DATABASE addressbook")->execute();
$schema = $session->getSchema("addressbook");
$collection = $schema->createCollection("people");
$result = $collection->add('{"name": "Alfred", "age": 42, "job": "Butler"}')->execute();
// 由 MySQL 服务器生成一个唯一的 _id(默认情况下,建议使用)
// 此处检索生成的 _id;在此示例中只有一个,因此 $ids[0]
$ids = $result->getGeneratedIds();
$alfreds_id = $ids[0];
// ...
print_r($alfreds_id);
print_r($collection->getOne($alfreds_id));
?>
上面的示例将输出类似于以下内容
00005b6b536100000000000000b1 Array ( [_id] => 00005b6b536100000000000000b1 [age] => 42 [job] => Butler [name] => Alfred )