在PHP cURL运行时访问XML数据

时间:2014-03-27 14:49:05

标签: php curl

我有以下代码

 $URL = 'https://hostedconnect.m5net.com/bobl/bobl';
    $xml = '<Command xmlns:m5="http://www.m5net.com/org/m5/data/v2/cti" xmlns:csta="http://www.ecma-international.org/standards/ecma-323/csta/ed5">
                <ApplicationContext>BoblConsole</ApplicationContext>
                     <Arguments xsi:type="org.m5.data.v2.cti.HostedConnectObject" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                        <csta:MonitorStart>
                            <csta:monitorObject>
                                <csta:deviceObject>DEVICE</csta:deviceObject>
                            </csta:monitorObject>
                        </csta:MonitorStart>
                    </Arguments>
                    <FormattedXml>true</FormattedXml>
                    <Id>9</Id>
                    <Name>org.m5.apps.v2.cti.HostedConnect.request</Name> 
                    <Password>PASSWORD</Password>
                    <User>USER</User>
                </Command>';


    $ch = curl_init($URL);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_TIMEOUT, 30);
    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
    curl_setopt($ch, CURLOPT_POST, 1);
    curl_setopt($ch, CURLOPT_VERBOSE, 1);
    curl_setopt($ch, CURLOPT_HTTPHEADER, array (
            'Transfer-Encoding: chunked',
            'Content-Encoding: chunked',
            'Connection: keep-alive',
            'Content-Type: text/xml'
    ));
    curl_setopt($ch, CURLOPT_POSTFIELDS, "$xml");
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    $result = curl_exec($ch);

    $test = stream_get_contents($fp_tmp);

API应该返回XML数据,但我不确定在cURL运行时如何访问该数据。我尝试过使用流,并将数据写入文件,但它们似乎都没有用。 cURL请求正常运行。刚运行时返回550个字节,当发生一个应该返回数据的事件时,它返回9100个字节。这让我相信正确的事情正在发生,但我不知道如何从卷曲中访问数据。

我需要连续运行,这是通过我们的托管服务提供商提供的api来监控我们的电话系统。

1 个答案:

答案 0 :(得分:1)

按照http://docs.php.net/manual/en/function.curl-setopt.php

中的说明尝试CURLOPT_WRITEFUNCTION
curl_setopt($ch, CURLOPT_WRITEFUNCTION, function($ch, $data) {
    static $buffer = '';
    $buffer .= $data;
    // <-- parse xml data here -->
    // <-- remove the consumed part from $buffer -->
    return strlen($data);
});
//curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

棘手的一方将解析xml数据,因为它不能保证每个单块(即$ data)都是一个xml数据包 - 可能甚至不是每个块都属于一个xml元素/文档。
尝试找到一个xml sax / pull解析器,它获取数据块并尽可能地解析它们(...并告诉你它消耗了多少数据,因此你可以在调用之间存储剩余的数据和/或重新开始下一个要素/文件) 在这种特殊情况下,可能......也许,我会恢复到正则表达式来查找事件的开始和结束标记,然后将该(子)字符串放入xml解析器中。