如何使用PHP CURL强制XML响应

Jus*_*Guy 2 php xml curl

我正在测试一个成功访问我的帐户的XML API,我得到了一个响应,但响应似乎是一个没有标签或任何内容的纯文本字符串,甚至没有名称/对值.我需要将响应捕获为XML,以便我可以使用XML标记来标识响应变量.

我使用表单POST将表单中的数据传递给CURL页面,该页面将POST解析为XML格式,然后使用CURL将其发送到API.API是基于XML的,我期望XML响应,而是接收

有所帮助!

CURL REQUEST/RESPONSE PAGE

                        <?php
                    if ($_SERVER['REQUEST_METHOD'] == 'POST') 
                    {
                        $xml = "<?xml version='1.0' encoding='UTF-8'?>";
                        $xml .= "<request>";

                        foreach ($_POST as $key => $val) {
                            $xml .= "<".$key.">". $val ."</".$key.">";
                        }
                        $xml .= "<username>user1234</username>";
                        $xml .= "<password>pass1234</password>";
                        $xml .= "</request>";               

                        echo "<br/>" . $xml . "<br/><br/>";

                        $ch = curl_init();
                        curl_setopt($ch, CURLOPT_URL, 'https://www.beanstream.com/scripts/process_transaction.aspx');
                        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
                        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
                        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
                        curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 0);
                        curl_setopt($ch, CURLOPT_HEADER, 1);
                        curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-type: application/xml'));
                        curl_setopt($ch, CURLOPT_POST, 1);
                        curl_setopt($ch, CURLOPT_POSTFIELDS, $xml);

                        $output = curl_exec($ch);
                        curl_close($ch);

                        print_r($output);       
                    }
                    ?>
Run Code Online (Sandbox Code Playgroud)

带标题的 API RESPONSE

HTTP/1.1 200 OK Cache-Control: private Content-Length: 724 Content-Type: application/xml; charset=utf-8 X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Set-Cookie: ASP.NET_SessionId=1p4jp2uoz2de3f45iolold3j; path=/; HttpOnly Date: Wed, 16 Oct 2013 21:39:38 GMT 1100001211ApprovedQCE9HW5ETESTNT53.4810/16/2013 2:39:38 PM1W001Postal/ZIP matches, street address does not match.1VIPCC7
Run Code Online (Sandbox Code Playgroud)

Mar*_*c B 9

你只是吐出结果,可能是浏览器.该浏览器可能正在尝试将XML标记呈现为HTML,并且因为它们不是真正的html而失败.简单地不呈现未知标签.

尝试"查看源代码",你会看到你的xml,或者做

echo '<pre>';
echo htmlspecialchars(print_r($output, true));
echo '</pre>';
Run Code Online (Sandbox Code Playgroud)