xml - Parsing complextype result in PHP -
i have following response soap server
<result>vghpcybpcybub3qgdghlihjvym90ihlvdsbhcmugbg9va2luzybmb3i=</result>
but don't know how parse result, supposedly there's information in there, wsdl document establish following:
<s:element name="some_response"> <s:complextype> <s:sequence> <s:element minoccurs="0" maxoccurs="1" name="result"> <s:complextype mixed="true"> <s:sequence> <s:any/> </s:sequence> </s:complextype> </s:element> </s:sequence> </s:complextype> </s:element>
is there way parse xml response object? i'm using simple_xml... parsing response.
that result base64 encoded.
echo base64_decode('vghpcybpcybub3qgdghlihjvym90ihlvdsbhcmugbg9va2luzybmb3i=');
outputs:
this not robot looking
Comments
Post a Comment