array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'zh', ), 'this' => array ( 0 => 'simplexmlelement.getname.php', 1 => 'SimpleXMLElement::getName', 2 => 'Gets the name of the XML element', ), 'up' => array ( 0 => 'class.simplexmlelement.php', 1 => 'SimpleXMLElement', ), 'prev' => array ( 0 => 'simplexmlelement.getdocnamespaces.php', 1 => 'SimpleXMLElement::getDocNamespaces', ), 'next' => array ( 0 => 'simplexmlelement.getnamespaces.php', 1 => 'SimpleXMLElement::getNamespaces', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/simplexml/simplexmlelement/getName.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

SimpleXMLElement::getName

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

SimpleXMLElement::getNameGets the name of the XML element

说明

public SimpleXMLElement::getName(): string

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.

示例

注意:

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

示例 #1 Get XML element names

<?php
include 'examples/simplexml-data.php';
$sxe = new SimpleXMLElement($xmlstr);

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

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

?>

以上示例会输出:

movies
movie