SimpleXMLElement::getNamespaces

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

SimpleXMLElement::getNamespaces返回文档中使用的命名空间

描述

public SimpleXMLElement::getNamespaces(bool $recursive = false): array

返回文档中使用的命名空间

参数

recursive

如果指定,则返回父节点和子节点中使用的所有命名空间。否则,仅返回根节点中使用的命名空间。

返回值

getNamespaces 方法返回一个包含命名空间名称及其关联 URI 的 array

示例

示例 #1 获取文档中使用的命名空间

<?php

$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);

?>

上面的示例将输出

array(1) {
  ["p"]=>
  string(21) "http://example.org/ns"
}

参见

添加注释

用户贡献的注释 3 个注释

6
harry at nospam dot thestorm dot plus dot com
12 年前
如果命名空间嵌套在 xml 中,则您必须循环遍历节点。

<?php




$xml
= <<<XML
<?xml version="1.0" encoding="UTF-8"?>
  <people xmlns:p="http://example.org/ns" xmlns:t="http://example.org/test">
      <items>
            <title>This is a test of namespaces and my patience</title>
            <p:person id="1">John Doe</p:person>
            <p:person id="2">Susie Q. Public</p:person>
            <p:person id="1">Fish Man</p:person>
      </items>
  </people>
XML;




$sxe = new SimpleXMLElement($xml);




foreach (
$sxe as $out_ns)
{
    $ns = $out_ns->getNamespaces(true);




    $child = $out_ns->children($ns['p']);




    foreach ($child as $out)
    {
        echo $out . "<br />";
    }
}
?>
5
harry at nospam dot thestorm dot plus dot com
12 年前
要读取命名空间节点,您必须使用 children 方法。

<?php

$xml
= <<<XML
<?xml version="1.0" encoding="UTF-8"?>
<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);

$ns = $sxe->getNamespaces(true);

$child = $sxe->children($ns['p']);

foreach (
$child->person as $out_ns)
{
echo
$out_ns;
}

?>
To Top