我收到来自API的回复,目前我正在使用它
$xml = simplexml_load_string($serverResponse);
print_r($xml->children('SOAP-ENV', true)->Body->children('urn:xtk:queryDef')->asXML());
这让我想到了以下
<ExecuteQueryResponse xmlns="urn:xtk:queryDef" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><pdomOutput xsi:type="ns:Element" SOAP-ENV:encodingStyle="http://xml.apache.org/xml-soap/literalxml">
<recipient account="7777777777"/></pdomOutput>
</ExecuteQueryResponse>
我要做的是提取帐户的值。我将如何获得这个价值?
由于