<slide>
<title>Sorting</title>

<example result="1"><![CDATA[<?php
$m = new MongoClient();
$c = $m->demo->cities;

$cursor = $c->find( [ 'country_code' => 'IS' ] )
            ->sort( [ 'name' => -1 ] );

foreach ( $cursor as $r ) {
    var_dump( $r['name'] );
}
?>]]></example>
</slide>
