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

search for in the

MongoDBRef::get> <MongoDBRef
Last updated: Fri, 27 Nov 2009

view this page in

MongoDBRef::create

(PECL mongo >= 0.9.0)

MongoDBRef::createCreates a new database reference

Description

public static array MongoDBRef::create ( string $collection , mixed $id [, string $database ] )

If no database is given, the current database is used.

Parameters

collection

Collection name.

id

The _id field of the object to which to link.

database

Database name.

Return Values

Returns the reference.

Examples

Example #1 MongoDBRef::create() example

<?php
$addresses 
$db->selectCollection('addresses');
$people $db->selectCollection('people');

// save $address so it has an _id
$addresses->insert($address);

// create a reference
$ref MongoDBRef::create($addresses->name$address['_id']);

// set the field in $person
$person['address'] = $ref;
$people->save($person);
?>

See Also



add a note add a note User Contributed Notes
MongoDBRef::create
There are no user contributed notes for this page.

MongoDBRef::get> <MongoDBRef
Last updated: Fri, 27 Nov 2009
 
 
show source | credits | sitemap | contact | advertising | mirror sites