SimpleXMLElement->getName()
(PHP 5 >= 5.1.3)
SimpleXMLElement->getName() — Gets the name of the XML element
설명
SimpleXMLElement
   
    string getName
     ( void
    )
  Gets the name of the XML element.
반환값
The getName method returns as a string the name of the XML tag referenced by the SimpleXMLElement object.
ì˜ˆì œ
Example#1 Get XML element names
<?php
 
$sxe = new SimpleXMLElement($xmlstr);
echo $sxe->getName() . "\n";
foreach ($sxe->children() as $child)
{
    echo $child->getName() . "\n";
}
?>