MongoDB\ChangeStream::getCursorId()
이 페이지의 내용
정의
Return Values
예시
이 예에서는 change stream의 커서 ID를 보고합니다.
$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) }