<?php
$m 
= new MongoClient();

// Find with 'projection'
$record $m->demo->talks->findOne(
  [ 
'talks.title' => 'Xdebug' ],
  [ 
'name' => 1'talks.url' => ]
);
?>