MongoCursor::rewind

(PECL mongo >=0.9.0)

MongoCursor::rewindカーソルを結果セットの先頭に戻す

説明

public MongoCursor::rewind ( void ) : void

これは、次の関数と同等です。

<?php

public function rewind() {
    
$this->reset();
    
$this->next();
}

?>

パラメータ

この関数にはパラメータはありません。

返り値

NULL を返します。

エラー / 例外

データベースに接続できない場合に MongoConnectionException、 そしてタイムアウトに達した場合に MongoCursorTimeoutException をスローします。

参考