Javascript debugger Website design ↑
SimpleXMLElement { string getName();}
string getName();
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.
getName
<?php $sxe = new SimpleXMLElement($xmlstr); echo $sxe->getName() . "\n"; foreach ($sxe->children() as $child) { echo $child->getName() . "\n"; } ?>
Javascript debugger Website design