PHP SimpleXMLElement::getNamespaces SimpleXML 函数

  • 定义和用法

    SimpleXMLElement::getNamespaces - 返回文档中使用的名称空间。
  • 版本支持

    PHP4 PHP5 PHP7
    不支持 支持 支持
  • 语法

    SimpleXMLElement::getNamespaces ( [ bool $recursive = FALSE ]  )
    
    返回文档中使用的名称空间
  • 参数

    参数 必需的 描述
    recursive 如果指定,则返回在父节点和子节点中使用的所有名称空间。 否则,仅返回在根节点中使用的名称空间。
  • 返回值

    getNamespaces方法返回名称空间名称及其相关的URI的数组。
  • 示例

    $xml = <<<XML
    <?xml version="1.0" standalone="yes"?>
    <people xmlns:p="http://example.org/ns" xmlns:t="http://example.org/test">
        <p:person id="1">John Doe</p:person>
        <p:person id="2">Susie Q. Public</p:person>
    </people>
    XML;
     
    $sxe = new SimpleXMLElement($xml);
    
    $namespaces = $sxe->getNamespaces(true);
    var_dump($namespaces);
    
    尝试一下
  • 相关函数

    SimpleXMLElement::getDocNamespaces() - 返回文档中声明的名称空间
    SimpleXMLElement::registerXPathNamespace() - 为下一个XPath查询创建一个前缀/ns上下文