|
MongoDB\Driver\WriteResult::getUpsertedIdsReturns an array of identifiers for upserted documents Beschreibung
final public array MongoDB\Driver\WriteResult::getUpsertedIds
( void
)
Parameter-ListeDiese Funktion hat keine Parameter. RückgabewerteReturns 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. Fehler/Exceptions
BeispieleBeispiel #1 MongoDB\Driver\WriteResult::getUpsertedIds example
<?phpDas oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
array(2) {
[2]=>
object(MongoDB\BSON\ObjectID)#4 (1) {
["oid"]=>
string(24) "580e62a224f2302f191b880b"
}
[3]=>
object(MongoDB\BSON\ObjectID)#5 (1) {
["oid"]=>
string(24) "580e62a224f2302f191b880c"
}
}
Siehe auch
|