MongoCursor::sort

(PECL mongo >=0.9.0)

MongoCursor::sortSorts the results by given fields

Description

public MongoCursor MongoCursor::sort ( array $fields )

Parameters

fields

The fields by which to sort.

Return Values

Returns this cursor.

Errors/Exceptions

Throws MongoCursorException if this cursor has started iterating.

Examples

Example #1 MongoCursor::sort() example

<?php
// sort x ascending
$cursor->sort(array('x' => 1));

// the associative array is ordered, for instance, these two 
// examples might yield different results:

// sort date ascending and age descending
$cursor->sort(array('date' => 1'age' => -1));

// sort age descending and date ascending
$cursor->sort(array('age' => -1'date' => 1));
?>

Copyright © 2010-2024 Platon Technologies, s.r.o.           Home | Man pages | tLDP | Documents | Utilities | About
Design by styleshout