PHP » GoLang |
login |
register |
about
|
GoLang MongoDB::createDBRef
request it (371)
GoLang replacement for PHP's MongoDB::createDBRef
[edit | history]
MongoDB::createDBRef(PECL mongo >=0.9.0) MongoDB::createDBRef — Creates a database reference DescriptionThis method is a flexible interface for creating database refrences (see MongoDBRef). Parameters
Return ValuesReturns a database reference array.
If an array without an _id field was provided as the
document_or_id parameter, ExamplesExample #1 MongoDB::createDBRef() example Example demonstrating how to programatically create a DB reference array from a document.
<?php The above example will output something similar to: Array ( [title] => Test article [description] => Test article description [_id] => MongoId Object ( ) ) Array ( [$ref] => articles [$id] => MongoId Object ( ) ) Now the $ref can be stored on another document and retrieved later with MongoDB::getDBRef() or MongoCollection::getDBRef(). Example #2 MongoDB::createDBRef() example Example demonstrating how to programatically create a DB reference from just an id.
<?php |
more
Recently updated
more
Most requested
more
Last requests
|