评估 DOMXpath->query 的结果是否返回匹配
如何评估 DOMTXpath->query 是否实际返回数据。现在我正在做($xml 是一个 DOMXpath 对象):
foreach($xml->query($xpath) as $node)
{
echo $node->textContent;
}
但是如果我的 $xpath 没有产生节点,它就不会输出任何数据。我尝试过类似的方法:
if ($xml->query($xpath))
{
echo "found";
}else{
echo "not found";
}
但这似乎不起作用。如何测试我的查询是否确实返回匹配节点(在本例中实际上是一个属性)?
How can I evaluate if DOMTXpath->query actually returns data. Right now I am doing ($xml is a DOMXpath object):
foreach($xml->query($xpath) as $node)
{
echo $node->textContent;
}
But if I my $xpath doesn't result in a node it just doesn't output any data. I tried something like:
if ($xml->query($xpath))
{
echo "found";
}else{
echo "not found";
}
but that doesn't seem to work. How can I test if my query is actually returning a matching node (actually an attribute in this case)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查 query() 函数返回的长度参数。 xpath->query() 返回一个 DOMNodeList。
Check the length parameter on the return of the query() function. xpath->query() returns a DOMNodeList.