| 
        
            MongoDB::createDBRefCreates a database reference Description
   public array MongoDB::createDBRef
    ( string  
  $collection
   , mixed $document_or_id
   )This 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. 
<?phpThe 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 |