Esempio n. 1
0
 /**
  * Return the current result item DN
  *
  * @return string|null
  */
 public function dn()
 {
     if ($this->count() > 0) {
         if ($this->current < 0) {
             $this->rewind();
         }
         return $this->iterator->key();
     }
     return null;
 }