PHP SimpleXMLElement::getDocNamespaces SimpleXML 函数
-
定义和用法
SimpleXMLElement::getDocNamespaces - 返回文档中声明的名称空间。 -
版本支持
PHP4 PHP5 PHP7 不支持 支持 支持 5.4.0 添加了from_root参数。
-
语法
SimpleXMLElement::getDocNamespaces ( [ bool $recursive = FALSE [, bool $from_root = TRUE ]] )
返回文档中声明的名称空间 -
参数
参数 必需的 描述 recursive 否 如果指定,则返回在父节点和子节点中声明的所有名称空间。 否则,仅返回在根节点中声明的名称空间。 from_root 否 允许您递归检查子节点下的名称空间,而不是从XML文档的根目录。 -
返回值
getDocNamespaces方法返回名称空间名称及其相关URI的数组。 -
示例
尝试一下$xml = <<<XML <?xml version="1.0" standalone="yes"?> <people xmlns:p="http://example.org/ns"> <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->getDocNamespaces(); var_dump($namespaces);
-
相关函数
SimpleXMLElement::getNamespaces() - 返回文档中使用的名称空间SimpleXMLElement::registerXPathNamespace() - 为下一个XPath查询创建一个前缀/ns上下文