if we have a list of ObjectIds.. how can we extract all the records in php? I am trying something like below.. but looks it's not working..
$collection->find(array(_id=>array('$in'=>new MongoId($idarray))));
idarray is an array of mongodb ObjectIDs..
thanks