MongoCursor
PHP Manual

MongoCursor::rewind

(PECL mongo >=0.9.0)

MongoCursor::rewindReturns the cursor to the beginning of the result set

Descrizione

public void MongoCursor::rewind ( void )

This is identical to the function:

<?php

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

?>

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

NULL.

Errori/Eccezioni

Throws MongoConnectionException if it cannot reach the database and MongoCursorTimeoutException if the timeout is exceeded.

Vedere anche:


MongoCursor
PHP Manual