MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Come posso creare un feed JSON da una raccolta 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);

È così che restituisco JSON da Mongo.