将 SimpleXML 转换为 DOMDocument,而不是 DOMElement
我需要将 SimpleXML
对象转换为 DOMDocument
,以便将其与 DOMXPath
一起使用。我需要 DOMXPath 以便可以使用其 registerPHPFunctions
方法。这可以做到吗?
使用dom_import_simplexml
,我得到一个DOMElement
,而不是DOMDocument
。
I need to convert a SimpleXML
object to a DOMDocument
, to use it with DOMXPath
. I need DOMXPath so that I can use its registerPHPFunctions
method. Can this be done?
With dom_import_simplexml
I get a DOMElement
, not DOMDocument
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以从 $anyDOMNode->ownerDocument< 获取文档/a>
You can fetch the document from $anyDOMNode->ownerDocument