|
MongoDB\Driver\WriteResult::getUpsertedIdsReturns an array of identifiers for upserted documents Description
final public array MongoDB\Driver\WriteResult::getUpsertedIds
( void
)
ParametersThis function has no parameters. Return ValuesReturns an array of identifiers (i.e. "_id" field values) for upserted documents. The array keys will correspond to the index of the write operation (from MongoDB\Driver\BulkWrite) responsible for the upsert. Errors/Exceptions
ExamplesExample #1 MongoDB\Driver\WriteResult::getUpsertedIds example
<?php The above example will output something similar to: array(2) { [2]=> object(MongoDB\BSON\ObjectID)#4 (1) { ["oid"]=> string(24) "580e62a224f2302f191b880b" } [3]=> object(MongoDB\BSON\ObjectID)#5 (1) { ["oid"]=> string(24) "580e62a224f2302f191b880c" } } See Also
|