Docs 菜单
Docs 主页
/ / /
PHP 库手册
/ / /

MongoDB\ChangeStream::getCursorId()

在此页面上

  • 定义
  • Return Values
  • 示例
  • 另请参阅
MongoDB\ChangeStream::getCursorId()

返回change stream游标的 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()