我们可以将一个 DomDocument 对象嵌套在另一个 DomDocument 对象中吗?
我在这里有一个简单的问题,但它让我很困惑..
我可以将 dom Document 目标嵌套在另一个 Dom Document 对象中吗?
我对问题的回答是否,应该是一棵带有子节点的树,而不是一棵带有子树的树。这只是我的答案,我不是专家,
我需要确切的答案...我对嵌套的想法正确吗?
请解释一下...
I got a simple question here, but it is confusing me a lot..
Can i nest a dom Document objective in another Dom Document object?
My answer to the question is NO, should be one tree with child node , not a tree with child trees..It is only my answer and i am not expert,
I need the exact answer...Am I thinking right about nesting?
Explain Please...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 DOM 规范:
我相当清楚地认为,根据 DOM 规范,
DOMDocument
对象(实现 DOM 的Document
接口)不能嵌套在另一个中。我不确定,但我相当确定 PHP 开发人员不会以任何其他方式实现这一点。From the DOM spec:
I take this fairly clearly to mean that, according to the DOM spec, a
DOMDocument
object (which implements DOM'sDocument
interface) cannot be nested within another. I'm not certain, but I'm fairly sure the PHP developers would not have implemented this in any other way.