寻求建议:DOMDocument identifiyingparent-childrelationships between Nodes

发布于 2024-12-18 02:40:35 字数 1068 浏览 0 评论 0原文

我有一个包含 2 个父节点的 XML 文件,在第二个父节点中,还有另一个父节点和子节点。

<product>
<upc>677446126665</upc>
<modelNumber>Content</modelNumber>
<categoryPath>
  <category>
    <name>Content</name>
  </category>
  <category>
    <name>Content</name>
  </category>
  <category>
    <name>Content</name>
  </category>
  <category>
    <name>Content</name>
  </category>
</categoryPath>
  </product>

我不是在找人给我代码,我只是想了解它是如何工作的。

 <categoryPath> </categoryPath> 

子节点,还是父节点?他们是使用 PHP 原生 DOMDocument 库的简单方法吗?它可以让我完全删除categoryPath以及每个名称节点的父节点(类别)

最终我会得到一个像这样的文档:

<product>
 <upc>44444</upc>
  <modelNumber>d</modelNumber>
  <name></name>
   <name></name>
    <name></name>
     <name></name>
 </product>

再次,我询问之间的父子关系这些节点,我并不是要求某人给我解决这个问题的代码。

I have an XML file that contains 2 parents nodes, and within the second parent node, there is another parent and child node.

<product>
<upc>677446126665</upc>
<modelNumber>Content</modelNumber>
<categoryPath>
  <category>
    <name>Content</name>
  </category>
  <category>
    <name>Content</name>
  </category>
  <category>
    <name>Content</name>
  </category>
  <category>
    <name>Content</name>
  </category>
</categoryPath>
  </product>

I'm not looking for someone to to give me the code, I just want to understand how this works.

Is

 <categoryPath> </categoryPath> 

a child node, or a parent node? Is their a trivial approach using PHP native DOMDocument library that can allow me to remove categoryPath completely along with each of the name node's parent node (category)

Ultimately I would have a document like this:

<product>
 <upc>44444</upc>
  <modelNumber>d</modelNumber>
  <name></name>
   <name></name>
    <name></name>
     <name></name>
 </product>

Again, I am asking about the parent child relationship between these nodes, I'm not asking for someone to just give me the code to solve this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不必你懂 2024-12-25 02:40:35

父关系

  • productupcmodelNumbercategoryPath
  • categoryPathcategory父级
  • categoryname父级

子关系

  • namecategory
  • categorycategoryPath
  • categoryPathproduct

所以 既是父节点又是子节点。

您可以:

  1. 将每个名称节点保存到列表中(请参阅
    DOMNode::cloneNode
  2. 删除categoryPath(请参阅
    DOMNode::removeChild)
  3. 将每个名称节点添加回 DOM (看
    DOMNode::appendChild)

以下 XML 教程说明了 XML 元素之间的关系。

Parent Relationship

  • product is the parent of upc, modelNumber, and categoryPath.
  • categoryPath is the parent of category.
  • category is the parent of name.

Child Relationship

  • name is the child of category.
  • category is a child of categoryPath.
  • categoryPath is a child of product.

So <categoryPath> is both a parent node and a child node.

You could:

  1. save each of the name nodes into a list (see
    DOMNode::cloneNode)
  2. remove categoryPath (see
    DOMNode::removeChild)
  3. add each of the name nodes back into the DOM (see
    DOMNode::appendChild)

The following XML tutorial illustrates the relationships between XML elements.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文