MongoDB\ChangeStream::getCursorId()
On this page
Definition
Return Values
A MongoDB\Driver\CursorId object.
Examples
This example reports the cursor ID for a change stream.
$uri = 'mongodb://rs1.example.com,rs2.example.com/?replicaSet=myReplicaSet'; $collection = (new MongoDB\Client($uri))->test->inventory; $changeStream = $collection->watch(); var_dump($changeStream->getCursorId());
The output would then resemble:
object(MongoDB\Driver\CursorId)#5 (1) { ["id"]=> int(8462642181784669708) }