I do this way:
$cursorLocations = $collection->find( array("locationName" => $locationName) )->limit(1);
if ($cursorLocations->count(true) == 1) {
$idLocations = $cursorLocations->getNext();
echo $idLocations["_id"];
}
I immediately apologize if this question has been, but read the documentation did not find an answer.
Maybe some other way to get the _id?