<?php
$note=<<<xml
<note>
<nome>xiro</nome>
</note>
xml;


$xml=simplexml_load_string($note);

echo $xml->getName() . "<br>";

foreach($xml->children() as $child) {
    echo $child->getName() . ": " . $child . "<br>";
}