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

Come si ottiene il valore stringa di un MongoID utilizzando PHP?

Credi che questo sia ciò che cerchi.

$widget['_id']->{'$id'};

Qualcosa del genere.

$widget = array('text' => 'Some text');
$this->mongo->db->insert($widget);
$widget['widgetId'] = $widget['_id']->{'$id'};
echo json_encode($widget);