MongoCursor::fields
Sets the fields for a query
Description
public MongoCursor MongoCursor::fields
( array $f
)
Thus, to return only the "summary" field, one could say:
<?php
$cursor->fields(array("summary" => true));
?>
To return all fields except the "hidden" field:
<?php
$cursor->fields(array("hidden" => false));
?>
Parameters
-
f
-
Fields to return (or not return).
Return Values
Returns this cursor.
Errors/Exceptions
Throws MongoCursorException if this cursor has started
iterating or a scalar argument is given.