MongoDBRef::create - Creates a new database reference
Вернуться к: MongoDBRef
MongoDBRef::create
(PECL mongo >= 0.9.0)
MongoDBRef::create — Creates a new database reference
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.
The concept of database references, and hence this class, has been deprecated.
Описание
If no database is given, the current database is used.
Список параметров
-
collection
-
Collection name (without the database name).
-
id
-
The _id field of the object to which to link.
-
database
-
Database name.
Возвращаемые значения
Returns the reference.
Примеры
Пример #1 MongoDBRef::create() example
This creates a database reference to a document in the addresses collection. The MongoCollection::getName() function returns the name of the collection (not including the database name).
<?php
$addresses = $db->addresses;
$people = $db->people;
// save $address so it has an _id
$addresses->insert($address);
// create a reference
$ref = MongoDBRef::create($addresses->getName(), $address['_id']);
// set the field in $person
$person['address'] = $ref;
$people->save($person);
?>
Смотрите также
- MongoDB::createDBRef() - Creates a database reference
- MongoCollection::createDBRef() - Creates a database reference
Вернуться к: MongoDBRef