I'm having trouble figuring out how to construct an update query in PHP that will update document IDs X,Y, and Z. Does anyone have experience with this?
$ids[] = array(
new MongoId('4eaaf929498fe2c80300000c'),
new MongoId('4eaaff24498fe2ba0900001f')
);
$collection->update(
array('_id' => array('$in' => $ids)),
array('$set' => array("title"=>"test")),
array("upsert" => true)
);