//Show only unique result
$cursor = $collection->find();
$cursor->limit(1);
(PECL mongo >=0.9.0)
MongoCursor::limit — 返す結果の数を制限する
num
返したい結果の数。
このカーソルを返します。
このカーソルの反復処理が始まっている場合に MongoCursorException をスローします。
//Show only unique result
$cursor = $collection->find();
$cursor->limit(1);