Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/php/231.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
错误请求:无法在PHP中解析XML_Php_Xml_Curl_Xml Parsing_Bad Request - Fatal编程技术网

错误请求:无法在PHP中解析XML

错误请求:无法在PHP中解析XML,php,xml,curl,xml-parsing,bad-request,Php,Xml,Curl,Xml Parsing,Bad Request,我正在使用PHP POST Curl请求传递XLM数据,但响应中出现错误: 错误的请求:无法分析XML。检查要发送到的XML 确保它可以被解析 您正在调用的API似乎有缺陷!尝试按如下方式分配变量: $xmldata= $url = 'https://provapi.advancedmd.com/processrequest/API-100/DOKTORCONNECT/xmlrpc/processrequest.aspx'; $xmldata = '<ppmdmsg action=&qu

我正在使用PHP POST Curl请求传递XLM数据,但响应中出现错误:

错误的请求:无法分析XML。检查要发送到的XML 确保它可以被解析


您正在调用的API似乎有缺陷!尝试按如下方式分配变量:

$xmldata=
$url = 'https://provapi.advancedmd.com/processrequest/API-100/DOKTORCONNECT/xmlrpc/processrequest.aspx';

$xmldata = '<ppmdmsg action="addpatient" class="demographics" msgtime="3/20/2018 2:52:07 PM"><patientlist><patient respparty="SELF" name="smith,BOB" sex="M" genderidentity="" genderidentityother="" orientation="" orientationother="" hipaarelationship="18" relationship="1" dob="03/11/1952"ssn="444-44-4444" additionalmrn="" chart="AUTO" profile="prof18" finclass="fclass16" language="44" inactivestatus="" title="MR" maritalstatus="1" employer=""><address zip="15136" city="MC KEES ROCKS" state="PA" address1="" address2="123 Main Street"/><contactinfo homephone="" officephone="" officeext="" otherphone="" othertype="" preferredcommunicationfid="" confidentialcommunicationfid="" communicationnote="" email="" emailverificationstatus="0"/></patient></patientlist><resppartylist><respparty name="SELF" accttype="4"/></resppartylist></ppmdmsg>';

$headers = array();
$headers[] = 'Content-Type: text/xml';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST,"POST");
curl_setopt($ch, CURLOPT_POSTFIELDS, $xmldata);
curl_setopt($ch, CURLOPT_HTTPHEADER,$headers);
//Send the request
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 300);
$response = curl_exec($ch);
curl_close($ch);
$array_data = json_decode(json_encode(simplexml_load_string($response)), true);
print_r('<pre>');
print_r($array_data);
print_r('</pre>');
Array
(
    [Results] => Array
        (
        )

    [Error] => Array
        (
            [Fault] => Array
                (
                    [faultcode] => Client
                    [faultstring] => Client Error
                    [detail] => Array
                        (
                            [code] => 400
                            [description] => Bad Request: XML cannot be parsed
                            [extrainfo] => Bad Request: XML cannot be parsed. Check the XML you are sending to make sure it can be parsed.
                        )

                )

        )

)
$xmldata = <<<XML
<ppmdmsg action="addpatient" class="demographics" msgtime="3/20/2018 2:52:07 PM">
    <patientlist>
        <patient respparty="SELF" name="smith,BOB" sex="M" genderidentity="" genderidentityother="" orientation=""
                 orientationother="" hipaarelationship="18" relationship="1" dob="03/11/1952" ssn="444-44-4444"
                 additionalmrn="" chart="AUTO" profile="prof18" finclass="fclass16" language="44" inactivestatus=""
                 title="MR" maritalstatus="1" employer="">
            <address zip="15136" city="MC KEES ROCKS" state="PA" address1="" address2="123 Main Street"/>
            <contactinfo homephone="" officephone="" officeext="" otherphone="" othertype=""
                         preferredcommunicationfid="" confidentialcommunicationfid="" communicationnote="" email=""
                         emailverificationstatus="0"/>
        </patient>
    </patientlist>
    <resppartylist>
        <respparty name="SELF" accttype="4"/>
    </resppartylist>
</ppmdmsg>
XML;