DomDocument 获取 XML ns 格式的属性
假设您有一个带有 ns 冒号标签的 xml 文档,例如
,如何使用 PHP DOMDocument 获取属性值?
Suppose you have an xml doc with tags with ns colons such as <person:core age="25" />
, how do you get the attribute value using PHP DOMDocument?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能想查看
DOMDocument::getElementsByTagNameNS()
[docs] 方法,它应该可以满足您的需要。我无法向您提供具体的代码,因为您还没有包含您正在使用的 XML 文件。You probably want to look into the
DOMDocument::getElementsByTagNameNS()
[docs] method, which should do what you need. I can't provide you with specific code, since you haven't included the XML file you're working with.