PHP Classes

File: vendor/mongodb/mongodb/docs/reference/method/MongoDBInsertOneResult-getInsertedId.txt

Recommend this page to a friend!
  Classes of walid laggoune   MongoDB Queue PHP Query Execute   vendor/mongodb/mongodb/docs/reference/method/MongoDBInsertOneResult-getInsertedId.txt   Download  
File: vendor/mongodb/mongodb/docs/reference/method/MongoDBInsertOneResult-getInsertedId.txt
Role: Documentation
Content type: text/plain
Description: Documentation
Class: MongoDB Queue PHP Query Execute
Query and execute multiple queries using MongoDB
Author: By
Last change:
Date: 4 years ago
Size: 920 bytes
 

Contents

Class file image Download
========================================= MongoDB\\InsertOneResult::getInsertedId() ========================================= .. default-domain:: mongodb .. contents:: On this page :local: :backlinks: none :depth: 1 :class: singlecol Definition ---------- .. phpmethod:: MongoDB\\InsertOneResult::getInsertedId() Return the ID (i.e. ``_id`` field value) for the inserted document. .. code-block:: php function getInsertedId(): mixed Since IDs are created by the driver, this method may be called irrespective of whether the write was acknowledged. Return Values ------------- The ID (i.e. ``_id`` field value) of the inserted document. If the document had an ID prior to inserting (i.e. the driver did not need to generate an ID), this will contain its ``_id`` field value. Any driver-generated ID will be a :php:`MongoDB\\BSON\\ObjectId <class.mongodb-bson-objectid>` instance.