PHP Doku:: Gets the name of the XML element - simplexmlelement.getname.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzXML-ManipulationSimpleXMLThe SimpleXMLElement classSimpleXMLElement::getName

Ein Service von Reinhard Neidl - Webprogrammierung.

The SimpleXMLElement class

<<SimpleXMLElement::getDocNamespaces

SimpleXMLElement::getNamespaces>>

SimpleXMLElement::getName

(PHP 5 >= 5.1.3)

SimpleXMLElement::getNameGets the name of the XML element

Beschreibung

public string SimpleXMLElement::getName ( void )

Gets the name of the XML element.

Rückgabewerte

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

Beispiele

Hinweis:

Listed examples may include example.php, which refers to the XML string found in the first example of the basic usage guide.

Beispiel #1 Get XML element names

<?php
include 'example.php';
$sxe = new SimpleXMLElement($xmlstr);

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

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

?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

movies
movie


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)