使用 simplexml 查找节点是否有兄弟节点
我试图查找某个节点是否有兄弟节点,如果有,我想知道这些兄弟节点是什么。
这可能吗?
I am try to find if a certain node has siblings, and if it does, I would like to know what those siblings are.
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
为了选择节点的兄弟节点,您必须使用相应的 XPath 轴。以下是如何选择节点的所有兄弟节点(忽略节点本身)
这就是您所要做的。
In order to select a node's siblings, you have to use the corresponding XPath axe. Here is how to select all a node's siblings (ignoring the node itself)
That's all you have to do.
我认为使用 xpath 是你最好的选择:
结果:
I think using xpath is your best bet here:
Results in:
不确定这对您是否仍然有用
Not sure if this is still useful to you