gpt4 book ai didi

php - PHP无法访问SimpleXMLElement对象的Xpath节点

转载 作者:行者123 更新时间:2023-12-03 16:53:49 26 4
gpt4 key购买 nike

$x = new DomDocument();
$x->loadXML($responseXml);
$xml = simplexml_import_dom($x);


使用print_r($ xml)输出数组将得到以下结果:

SimpleXMLElement Object
(
[Timestamp] => 2014-11-09T18:28:47.843Z
[Ack] => Success
[Version] => 897
[Build] => E897_UNI_API5_17253832_R1
[Store] => SimpleXMLElement Object
(
[Name] => test
[SubscriptionLevel] => Basic
[Description] => Welcome Message.
)

)


使用$ xml-> Store-> Description输出“欢迎消息”。

当我使用xpath通过以下代码返回Description节点时,得到一个空数组:

$xpath = new DOMXPath($x);
$result = $xpath->query("/Store/Description");


为什么会失败?

最佳答案

使用简单的xml更容易。

$xml = new SimpleXMLElement($string);
$result = $xml->xpath('/Store/Description');


http://php.net/manual/en/simplexmlelement.xpath.php

关于php - PHP无法访问SimpleXMLElement对象的Xpath节点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26833441/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com