MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Wie erstelle ich einen JSON-Feed aus einer MongoDB-Sammlung

    $cursor = $this->collection->find($params);
    $return = array();
    $i=0;
    while( $cursor->hasNext() )
    {

        $return[$i] = $cursor->getNext();
        // key() function returns the records '_id'
        $return[$i++]['_id'] = $cursor->key();
    }
    return json_encode($return);

So gebe ich JSON von Mongo zurück.