MongoDB
 sql >> Base de données >  >> NoSQL >> MongoDB

Comment créer un flux JSON à partir d'une collection MongoDB

    $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);

C'est ainsi que je renvoie JSON de Mongo.