簡體   English   中英

使用nusoap_client在php中讀取肥皂響應

[英]Reading soap response in php using nusoap_client

我如何讀取此肥皂響應並回顯subid和points的值。 這是回應

    <?xml version="1.0" encoding="ISO-8859-1"?>
<SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="urn:zuku">
    <SOAP-ENV:Body>
        <ns1:showloyaltypointsResponse xmlns:ns1="http://tempuri.org">
            <return xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="tns:subpoints[1]">
                <item xsi:type="tns:subpoints">
                    <subid xsi:type="xsd:integer">618341</subid>
                    <points xsi:type="xsd:string">0</points>
                </item>
            </return>
        </ns1:showloyaltypointsResponse>
    </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

這是我的PHP代碼

    $result = $client ->call('showloyaltypoints',array("subid" =>$subid,"username" =>"$username", "password" =>"$password"));

echo $client->response;

我首先將其轉換為數組,從而找到了解決方案。

https://stackoverflow.com/a/42311833/7042343

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM