Php/docs/mongodbref.get
来自菜鸟教程
MongoDBRef::get
(PECL mongo >= 0.9.0)
MongoDBRef::get — 获取引用所指向的对象
This extension that defines this class
is deprecated. Instead, the MongoDB extension should be used. There is no equivalent for this class in the new extension.
数据库引用(database reference) 的概念,并且此类已经被弃用。
说明
public static MongoDBRef::get
( MongoDB $db
, array $ref
) : array
参数
db
- 使用的数据库。
ref
- 要获取的引用。
返回值
返回引用指向的文档,如果文档不存在则返回 null
(该引用已损坏)。
范例
Example #1 MongoCollection::createDBRef() 例子
<?php// 从 db 获取 $person。$person = $people->findOne();// 解析引用的 address$address = MongoDBRef::get($people->db, $person['address']);?>
参见
- MongoDB::getDBRef() - Fetches the document pointed to by a database reference
- MongoCollection::getDBRef() - Fetches the document pointed to by a database reference