Menu Docs
Página inicial do Docs
/ / /
Manual da Biblioteca PHP
/ / /

MongoDB\ChangeStream::getCursorId()

Nesta página

  • Definição
  • Return Values
  • Exemplos
  • Veja também
MongoDB\ChangeStream::getCursorId()

Retorna o ID do cursor do change stream.

function getCursorId(): MongoDB\Driver\CursorId

Um MongoDB\Driver\CursorId evento.

Este exemplo informa o ID do cursor para um 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());

A saída seria então semelhante a:

object(MongoDB\Driver\CursorId)#5 (1) {
["id"]=>
int(8462642181784669708)
}
  • MongoDB\Client::watch()

  • MongoDB\Collection::watch()

  • MongoDB\Database::watch()

  • MongoDB\Driver\CursorId

  • MongoDB\Driver\Cursor::getId()

Voltar

current()