当前位置:Gxlcms > PHP教程 > thinkphp5-急php发送xml无法解析

thinkphp5-急php发送xml无法解析

时间:2021-07-01 10:21:17 帮助过:47人阅读

响应消息体

这是我通过PHP发送的请求消息体



8002052000147079866717468b91d6b9bc1debb052a1f9a66fee

xml;
        $url = 'http://175.25.25.41:7070/billservice/sltAPI';
        $header[] = 'Content-type: text/xml; charset=utf-8';
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
        curl_setopt($ch, CURLOPT_POST, 1);
        curl_setopt($ch, CURLOPT_POSTFIELDS, $xmlStr);
        $response = curl_exec($ch);
        if(curl_errno($ch)){
            print curl_error($ch);
        }
        curl_close($ch);
        var_dump($response);
    }

但是无法解析,不知道问题出在什么地方,始终返回这样的结果。

解析结果如图所示: (errorcode = 100)代表错误码

正确的返回结果,是这样的。此处我只通过表单提交完成解析,是正常的。

我在本地发送xml消息 始终无法解析 求助各位大神们!

回复内容:

响应消息体

这是我通过PHP发送的请求消息体



8002052000147079866717468b91d6b9bc1debb052a1f9a66fee

xml;
        $url = 'http://175.25.25.41:7070/billservice/sltAPI';
        $header[] = 'Content-type: text/xml; charset=utf-8';
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
        curl_setopt($ch, CURLOPT_POST, 1);
        curl_setopt($ch, CURLOPT_POSTFIELDS, $xmlStr);
        $response = curl_exec($ch);
        if(curl_errno($ch)){
            print curl_error($ch);
        }
        curl_close($ch);
        var_dump($response);
    }

但是无法解析,不知道问题出在什么地方,始终返回这样的结果。

解析结果如图所示: (errorcode = 100)代表错误码

正确的返回结果,是这样的。此处我只通过表单提交完成解析,是正常的。

我在本地发送xml消息 始终无法解析 求助各位大神们!

人气教程排行