PHP 7.0.6 Released

MongoCursor::rewind

(PECL mongo >=0.9.0)

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

Description

public void MongoCursor::rewind ( void )

This is identical to the function:

<?php

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

?>

Parameters

This function has no parameters.

Return Values

NULL.

Errors/Exceptions

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

See Also

User Contributed Notes

There are no user contributed notes for this page.
To Top