如何从简单 XML PHP 中属性为特定字符串的 XML 树中删除元素

发布于 2024-12-03 06:52:24 字数 513 浏览 0 评论 0原文

所以我想从 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 技术交流群。

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

发布评论

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

评论(2

大姐,你呐 2024-12-10 06:52:24

SimpleXML没有删除子节点功能,
在某些情况下,您可以如何删除元素在 XML 字符串内?
但取决于 XML 结构

DOMDocument 中的解决方案

$doc = new DOMDocument;
$doc->loadXML($noteString['Notes']);

$xpath = new DOMXPath($doc);
$items = $xpath->query( 'note[@url!="http://yahoo.com"]');

for ($i = 0; $i < $items->length; $i++)
{
  $doc->documentElement->removeChild( $items->item($i) );
}

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

$doc = new DOMDocument;
$doc->loadXML($noteString['Notes']);

$xpath = new DOMXPath($doc);
$items = $xpath->query( 'note[@url!="http://yahoo.com"]');

for ($i = 0; $i < $items->length; $i++)
{
  $doc->documentElement->removeChild( $items->item($i) );
}
少钕鈤記 2024-12-10 06:52:24

可以通过使用 unset() 来删除带有 SimpleXML 的节点,尽管这有一些技巧。

$yahooNotes = $notesXML->xpath('note[@url="http://yahoo.com"]');
// We know there is only one so access it directly
$noteToRemove = $yahooNotes[0];
// Unset the node. Note: unset($noteToRemove) would only unset the variable
unset($noteToRemove[0]);

如果您想要删除多个匹配节点,您可以循环遍历它们。

foreach ($yahooNotes as $noteToRemove) {
    unset($noteToRemove[0]);
}

It is possible to remove nodes with SimpleXML by using unset(), though there is some trickery to it.

$yahooNotes = $notesXML->xpath('note[@url="http://yahoo.com"]');
// We know there is only one so access it directly
$noteToRemove = $yahooNotes[0];
// Unset the node. Note: unset($noteToRemove) would only unset the variable
unset($noteToRemove[0]);

If there are multiple matching nodes that you wish to delete, you could loop over them.

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