Новости | Документация | Download | Webboard | FAQ | Поиск | Контакты


mongo_next

(PECL mongo >= 0.8.0)

mongo_nextFetches the next document returned by a query

Описание

array mongo_next ( resource $cursor )

Fetches the next document returned by a query.

Список параметров

cursor

The cursor to use.

Возвращаемые значения

The next document.

Errors/Exceptions

Creates an error if there are no more documents.

Примеры

Пример #1 mongo_next() example

This example uses mongo_has_next and mongo_next to iterate through query results and storing them in an array.

<?php

$conn 
mongo_connect("localhost"true);
if (!
$conn) {
   die(
"Could not connect.");
}
$cursor mongo_query($conn"foo.bar", array(), 00nullnullnull);

$results = array();
while (
mongo_has_next($cursor)) {
   
$results[] = mongo_next($cursor);
}

?>

Смотрите также






  Copyright Apache.ru © 1999-2017, All Rights Reserved Разработка сайта: Inside.ru  
  РЕКЛАМА НА САЙТЕ: |