Navigation
This version of the documentation is archived and no longer supported. To learn how to upgrade your version of PHP Library Manual, refer to the upgrade documentation.

MongoDB\ChangeStream::getCursorId()

Definition

MongoDB\ChangeStream::getCursorId

Returns the change stream cursor’s ID.

function getCursorId(): MongoDB\Driver\CursorId

Return Values

A MongoDB\Driver\CursorId object.

Examples

This example reports the cursor ID for a change stream.

<?php

$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)
}