PHP » GoLang |
login |
register |
about
|
GoLang MongoDB\Driver\WriteResult::getUpsertedIds
request it (329)
GoLang replacement for PHP's MongoDB\Driver\WriteResult::getUpsertedIds
[edit | history]
PHP MongoDB\Driver\WriteResult::getUpsertedIdsPHP original manual for MongoDB\Driver\WriteResult::getUpsertedIds [ show | php.net ]MongoDB\Driver\WriteResult::getUpsertedIds(mongodb >=1.0.0) MongoDB\Driver\WriteResult::getUpsertedIds — Returns 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
|
more
Recently updated
more
Most requested
more
Last requests |