PHP 7.0.6 Released

MongoCursor::next

(PECL mongo >=0.9.0)

MongoCursor::nextAdvances the cursor to the next result, and returns that result

Description

public array MongoCursor::next ( void )

Parameters

This function has no parameters.

Return Values

Returns the next document.

Errors/Exceptions

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

See Also

User Contributed Notes

will dot edgington at gmail dot com
1 month ago
Just a heads up- with version 1.5.4 of the mongo extension, next() is not returning the same result as its alias getNext() (http://php.net/manual/en/mongocursor.getnext.php).  An array is returned with null values.
To Top