如何使用 XPath 检索 subsubchild?
How to retrieve a subsubchild using XPath?
我正在测试一个 XML 结构:
<Articles>
...
<Article ID="333">
<author>Paul</author>
<title>i hate xpath </title>
<child1>bla</child1>
<child2>blabla
<subchild>
<subsubchild DEEP = "Attribute"></subsubchild> //this is my nightmare
</subchild>
</child2>
<child3>testing</child3>
</Article>
...
</Articles>
什么 XPath 表达式将获取和更新 subsubchild
属性值?我主要关心的是获取和更新任何节点的子值,无论位于多深或多浅,如果父 ID(在本例中为 333)已知。
目前我用过:
$query= "//*[@ID=333]//*node()[@DEEP and @DEEP = "Attribute"]";
$outcome = $xml->xpath($query);
echo isset($outcome[0][0]) ? "found" : "unavailable";
以及其他几个相关的表达式,它们都让我对无效表达式报告的努力感到沮丧。
function XMLChangeAttribValue($ParentID, $attirbName, $attribValue, $NewValue){
$xml //Never mind, i've create this sucessfully
$query = "//*[@ID=$ParentID]//*[@$attirbName = $attribValue]";
$outcome = $xml->xpath($query);
echo isset($outcome[0][0]) ? "found" : "unavailable";
}
在这种情况下,select 您要定位的 subsubchild
的 XPath 是:
$query = "//*[@ID=333]//*[@DEEP = 'Attribute']";
要select属性本身,您可以使用:
$query = "//*[@ID=333]//*/@DEEP[. = 'Attribute']";
请注意,我在字符串中使用了单引号,因为除非转义,否则不能在双引号字符串中使用双引号。
还应注意,在 XPath 表达式中使用 *node()
all in one clump 是无效的。
我正在测试一个 XML 结构:
<Articles>
...
<Article ID="333">
<author>Paul</author>
<title>i hate xpath </title>
<child1>bla</child1>
<child2>blabla
<subchild>
<subsubchild DEEP = "Attribute"></subsubchild> //this is my nightmare
</subchild>
</child2>
<child3>testing</child3>
</Article>
...
</Articles>
什么 XPath 表达式将获取和更新 subsubchild
属性值?我主要关心的是获取和更新任何节点的子值,无论位于多深或多浅,如果父 ID(在本例中为 333)已知。
目前我用过:
$query= "//*[@ID=333]//*node()[@DEEP and @DEEP = "Attribute"]";
$outcome = $xml->xpath($query);
echo isset($outcome[0][0]) ? "found" : "unavailable";
以及其他几个相关的表达式,它们都让我对无效表达式报告的努力感到沮丧。
function XMLChangeAttribValue($ParentID, $attirbName, $attribValue, $NewValue){
$xml //Never mind, i've create this sucessfully
$query = "//*[@ID=$ParentID]//*[@$attirbName = $attribValue]";
$outcome = $xml->xpath($query);
echo isset($outcome[0][0]) ? "found" : "unavailable";
}
在这种情况下,select 您要定位的 subsubchild
的 XPath 是:
$query = "//*[@ID=333]//*[@DEEP = 'Attribute']";
要select属性本身,您可以使用:
$query = "//*[@ID=333]//*/@DEEP[. = 'Attribute']";
请注意,我在字符串中使用了单引号,因为除非转义,否则不能在双引号字符串中使用双引号。
还应注意,在 XPath 表达式中使用 *node()
all in one clump 是无效的。