MongoCursor::info Gets the query, fields, limit, and skip for this cursor &reftitle.description; public arrayMongoCursor::info This can be called before or after the query. &reftitle.parameters; &no.function.parameters; &reftitle.returnvalues; The query, fields, limit, and skip for this cursor as an associative array. &reftitle.examples; <function>MongoCursor::info</function> example foo->bar->find(array("x" => 4), array("y" => false)); var_dump($cursor->info()); ?> ]]> &example.outputs.similar; string(7) "foo.bar" ["limit"]=> int(0) ["skip"]=> int(0) ["query"]=> array(1) { ["x"]=> int(4) } ["fields"]=> array(1) { ["y"]=> int(0) } } ]]>