<?php$m = new MongoClient();$c = $m->demo->talks;$cursor = $c->find( [ 'talks.title' => [ '$exists' => true ] ] );foreach ( $cursor as $r ){ echo $r['_id'], "\n";}?>