php 如何在不使用其父元素的情况下设置 SimpleXmlElement 的文本值?
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/3153477/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-25 08:52:41 来源:igfitidea点击:
How can I set text value of SimpleXmlElement without using its parent?
提问by Kamil Szot
I want to set text of some node found by xpath()
我想设置 xpath() 找到的某个节点的文本
<?php
$args = new SimpleXmlElement(
<<<XML
<a>
<b>
<c>text</c>
<c>stuff</c>
</b>
<d>
<c>code</c>
</d>
</a>
XML
);
// I want to set text of some node found by xpath
// Let's take (//c) for example
// convoluted and I can't be sure I'm setting right node
$firstC = reset($args->xpath("//c[1]/parent::*"));
$firstC->c[0] = "test 1";
// like here: Found node is not actually third in its parent.
$firstC = reset($args->xpath("(//c)[3]/parent::*"));
$firstC->c[2] = "test 2";
// following won't work for obvious reasons,
// some setText() method would be perfect but I can't find nothing similar,
$firstC = reset($args->xpath("//c[1]"));
$firstC = "test";
// maybe there's some hack for it?
$firstC = reset($args->xpath("//c[1]"));
$firstC->{"."} = "test"; // nope, just adds child named .
$firstC->{""} = "test"; // still not right, 'Cannot write or create unnamed element'
$firstC["."] = "test"; // still no luck, adds attribute named .
$firstC[""] = "test"; // still no luck, 'Cannot write or create unnamed attribute'
$firstC->addChild('','test'); // grr, 'SimpleXMLElement::addChild(): Element name is required'
$firstC->addChild('.','test'); // just adds another child with name .
echo $args->asXML();
// it outputs:
//
// PHP Warning: main(): Cannot add element c number 2 when only 1 such elements exist
// PHP Warning: main(): Cannot write or create unnamed element
// PHP Warning: main(): Cannot write or create unnamed attribute
// PHP Warning: SimpleXMLElement::addChild(): Element name is required
// <?xml version="1.0"? >
// <a>
// <b>
// <c .="test">test 1<.>test</.><.>test</.></c>
// <c>stuff</c>
// </b>
// <d>
// <c>code</c>
// <c>test 2</c></d>
// </a>
回答by Kamil Szot
You can do with a SimpleXMLElement self-reference:
您可以使用SimpleXMLElement 自引用:
$firstC->{0} = "Victory!!"; // hackity, hack, hack!
// -or-
$firstC[0] = "Victory!!";
found after looking at
查看后发现
var_dump((array) reset($xml->xpath("(//c)[3]")))
This also works with unsetoperations as outlined in an answer to:
这也适用unset于以下回答中概述的操作:

