downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

SimpleXMLElement::getNamespaces> <SimpleXMLElement::getDocNamespaces
Last updated: Fri, 20 Nov 2009

view this page in

SimpleXMLElement::getName

(PHP 5 >= 5.1.3)

SimpleXMLElement::getNameGets the name of the XML element

Description

string getName ( void )

Gets the name of the XML element.

Return Values

The getName method returns as a string the name of the XML tag referenced by the SimpleXMLElement object.

Examples

Example #1 Get XML element names

<?php
 
$sxe 
= new SimpleXMLElement($xmlstr);

echo 
$sxe->getName() . "\n";

foreach (
$sxe->children() as $child)
{
    echo 
$child->getName() . "\n";
}

?>



add a note add a note User Contributed Notes
SimpleXMLElement::getName
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites