PHP 8.1.28 Released!

SimpleXMLElement::getName

(PHP 5 >= 5.1.3, PHP 7, PHP 8)

SimpleXMLElement::getNameGets the name of the XML element

Descrizione

public SimpleXMLElement::getName(): string

Gets the name of the XML element.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

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

Esempi

Nota:

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

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

?>

Il precedente esempio visualizzerà:

movies
movie

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top