PHP getName() 函数


PHP getName() 函数

定义和用法

getName() 函数从 SimpleXMLElement 对象获取 XML 元素的名称。

如果成功,该函数返回当前的 XML 元素的名称。如果失败,则返回 false。

语法

class SimpleXMLElement{string getName()}

实例

XML 文件:

<?xml version="1.0" encoding="ISO-8859-1"?><note><to>George</to><from>John</from><heading>Reminder</heading><b:body>Don't forget the meeting!</b:body></note>

PHP 代码:

<?phpif (file_exists('test.xml'))  {  $xml = simplexml_load_file('test.xml');  }echo $xml->getName();foreach($xml->children() as $child)  {  echo $child->getName();  }?>

输出类似:

notetofromheadingbody
标签:, , ,