Docs Menu
Docs Home
/ / /
PHP ライブラリ マニュアル
/ / /

MongoDB\ChangeStream::getCursorId()

項目一覧

  • 定義
  • Return Values
  • その他の参照
MongoDB\ChangeStream::getCursorId()

変更ストリーム カーソルの ID を返します。

function getCursorId(): MongoDB\Driver\CursorId

A MongoDB\Driver\CursorId オブジェクト。

この例では、変更ストリームのカーソル 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\Driver\CursorId

  • MongoDB\Driver\Cursor::getId()

戻る

current()