update : 2015.11.03
php.shukuma.com

검색:
 
 
Gets the name of the XML element

SimpleXMLElement::getName

(PHP 5 >= 5.1.3)

SimpleXMLElement::getNameGets the name of the XML element

설명

public string SimpleXMLElement::getName ( void )

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.

예제

Note:

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

?>

위 예제의 출력:

movies
movie