I have inserted some documents in a collection without ObjectID assignment.
Of course, without manually assigning ObjectID for each documents, mongoDB automatically
assigns unique ObjectID on each documents.
I want to query a document by those unique ObjectID.
$db->collection_name->find(array('_id'=>'4e49fd8269fd873c0a000000')));
it does not work either with prefix of MongoID or ObjectID in front of '4e49fd8269fd873c0a000000'.
Is there a proper way to query by ObjectID with mongoDB in PHP?