Web Features Learning Mode

What is the work of simplexml_import_dom() in the following PHP code?

<?php
 $dom = new domDocument;
 $dom->loadXML('<email><from>John</from></email>');
  $xml = simplexml_import_dom($dom);
  echo $xml->from;
 ?>