如何从简单 XML PHP 中属性为特定字符串的 XML 树中删除元素
所以我想从 XML 字符串中删除一个子项,其中属性是特定值。
例如:
<xml>
<note url="http://google.com">
Values
</note>
<note url="http://yahoo.com">
Yahoo Values
</note>
</xml>
那么如何删除属性 http://yahoo.com 作为 URL 字符串的注释节点?
我正在尝试在 PHP Simple XML 中执行此操作
哦,而且我还使用 SimpleXML_Load_String 函数将其作为 XML 对象加载,如下所示:
$notesXML = simplexml_load_string($noteString['Notes']);
So I want to delete a child from an XML string where an attribute is a specific value.
For Example:
<xml>
<note url="http://google.com">
Values
</note>
<note url="http://yahoo.com">
Yahoo Values
</note>
</xml>
So how would I delete the note node with attribute http://yahoo.com as the string for the URL?
I'm trying to do this in PHP Simple XML
Oh and also I'm loading it in as an XML Object with the SimpleXML_Load_String function like this:
$notesXML = simplexml_load_string($noteString['Notes']);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
SimpleXML没有删除子节点功能,
在某些情况下,您可以如何删除元素在 XML 字符串内?
但取决于 XML 结构
DOMDocument 中的解决方案
SimpleXML does not have the remove child node feature,
there are cases you are can do How to deleted an element inside XML string?
but is depend on XML structure
Solution in DOMDocument
可以通过使用
unset()
来删除带有 SimpleXML 的节点,尽管这有一些技巧。如果您想要删除多个匹配节点,您可以循环遍历它们。
It is possible to remove nodes with SimpleXML by using
unset()
, though there is some trickery to it.If there are multiple matching nodes that you wish to delete, you could loop over them.