Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
I just found the solution.. created array of mongoIDs and then did $collection->find(array(_id=>array('$in'=>$mongoIDarray))).. thanks – abhishek Oct 7 '12 at 6:39

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.