Retorna o nome de um elemento XML e seus elementos filhos:
<?php$xml=<<<XML<?xml version="1.0" standalone="yes"?><cars> <car id="1">Volvo</car> <car id="2">BMW </car> <car id="3">Saab</car> </cars>XML;$sxe=new SimpleXMLElement($xml);echo $sxe->getName() . "<br>";foreach ($sxe->children() as $child) { echo $child->getName() .A função getName() retorna o nome do elemento XML.
getNome();
Valor de retorno: | Retorna o nome da tag XML referenciada pelo elemento SimpleXML como uma string. |
---|---|
Versão PHP: | 5.1.3+ |