您现在的位置是:首页 > PHP函数

李清波 2021-06-17 PHP函数 1395 复制当前网址

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>Dont forget the meeting!</b:body>
</note>

PHP 代码:

<?php
if (file_exists(test.xml))
  {
  $xml = simplexml_load_file(test.xml);
  }

echo $xml->getName();

foreach($xml->children() as $child)
  {
  echo $child->getName();
  }
?>

输出类似:

note
to
from
heading
body


文章来源:https://liqingbo.com/blog-791.html

上一篇:getNamespace

下一篇:getDocNamespaces

评论