agentejo / mongo-lite

Schemaless database on top of SQLite
160 stars 18 forks source link

get id document #9

Closed wormen closed 8 years ago

wormen commented 8 years ago

tell me how after use

$collection->insert($document);

I can in callback get an ID saved document?

aheinze commented 8 years ago
$document = [...];
$collection->insert($document);

echo $document['_id'];
wormen commented 8 years ago

thanks