Docs Menu
Docs Home
/ / /
PHP 라이브러리 매뉴얼
/ / /

MongoDB\ChangeStream::getCursorId()

이 페이지의 내용

  • 정의
  • Return Values
  • 예시
  • 다음도 참조하세요.
MongoDB\ChangeStream::getCursorId()

변경 스트림 커서의 ID를 반환합니다.

function getCursorId(): MongoDB\Driver\CursorId

MongoDB\Driver\CursorId 객체.

이 예에서는 change stream의 커서 ID를 보고합니다.

<?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());

이 경우 출력은 다음과 유사합니다:

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

  • MongoDB\Collection::watch()

  • MongoDB\Database::watch()

  • MongoDB\드라이버\CursorId

  • MongoDB\Driver\Cursor::getId()

돌아가기

current()