本文介绍了SimpleXML 中 getDocNamespaces 和 getNamespaces 的区别的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

SimpleXMLElement 的两个方法是 getDocNamespacesgetNamespaces.两者对我来说似乎都一样,我尝试了彼此更改方法名称但结果相同的示例.

Two method of SimpleXMLElement are getDocNamespaces and getNamespaces. Both seems same to me, i tried the example of each other changing the method name but same result.

那么谁能给我解释一下,有什么区别?来自 php.net 的链接 getNamespaces getdocnamespaces

So can anyone explain it to me, what is the difference? Links from php.net getNamespaces getdocnamespaces

推荐答案

getDocNamespaces() 返回文档中声明的所有命名空间;getNamespaces() 仅返回文档中实际使用的那些命名空间.

getDocNamespaces() returns all namespaces declared in document; getNamespaces() returns only those namespaces that are actually used in the document.

getNamespaces() 文档页面中的示例 #1 显示了这一点,其中 xmlns:t="http://example.org/test" 已定义,但未使用.

Example #1 in the getNamespaces() doc page shows this with xmlns:t="http://example.org/test" defined, but not used.

这篇关于SimpleXML 中 getDocNamespaces 和 getNamespaces 的区别的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-26 20:30