Overview
KB
Technical FAQ
PHP Manual
CSS2 Manual
HTML Manual
JS Guide
JS Reference
PhpDock Manual
Nu-Coder Manual
PhpExpress Manual
PHP Joomla
Development
Learn PHP
 
<SimpleXMLElement->getDocNamespaces()SimpleXMLElement->getNamespaces()>
Last updated: Tue, 19 Sep 2006

SimpleXMLElement->getName()

(no version information, might be only in CVS)

SimpleXMLElement->getName() -- Gets the name of the XML element

Description

class SimpleXMLElement {

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";
}

?>




<SimpleXMLElement->getDocNamespaces()SimpleXMLElement->getNamespaces()>
Last updated: Tue, 19 Sep 2006