将PHP curl响应解析为数组?

时间:2016-03-06 22:20:17

标签: php curl

解 用解决方案编辑。

不知道如果我必须回答,或编辑,或者是什么。

问题在于服务有时会回复标题,而其他人也会回答。

在我的具体情况下,我解决了使用这个基于SO的片段。

通过这个功能,我得到了答案的正文。

function get_body_from_curl_response($response){
    list($header, $body) = explode("\r\n\r\n", $response, 2);
    return $body;
}

使用此函数,我得到标题的关联数组。

function get_headers_from_curl_response($response)
{
    $headers = array();
    $header_text = substr($response, 0, strpos($response, "\r\n\r\n"));
    foreach (explode("\r\n", $header_text) as $i => $line)
        if ($i === 0)
            $headers['http_code'] = $line;
        else
        {
            list ($key, $value) = explode(': ', $line);

            $headers[$key] = $value;
        }
    return $headers;
}

- 最初的问题。

我正在尝试与REST服务进行通信,但不了解如何解析响应。从服务的python示例中,我看到很容易管理类似于数组的响应,但是从php我只得到一个大文本,我必须以某种方式解析。

答案是这样的 http://www.valentina-db.com/docs/dokuwiki/v6/doku.php?id=valentina:articles:vserver_rest&s[]=rest

在python中有一些解析curl输出的方法,比如urllib2吗?

更新

我的代码

$data = array("user" => "sa", "password" => md5("sa"));

$data_string = json_encode($data);

$ch2 = curl_init();
curl_setopt($ch2, CURLOPT_URL, 'http://127.0.0.1:8888/rest');
curl_setopt($ch2, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch2, CURLOPT_POSTFIELDS, $data_string);
curl_setopt($ch2, CURLOPT_HEADER, true);
curl_setopt($ch2, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch2, CURLOPT_HTTPHEADER, array(
    'Accept: application/json',
    'Content-Type: application/json'
));

$result = curl_exec($ch2);

echo 'Result <br>';
var_dump  ( $result ) ;
echo '<br>--------- <br>';

$json_answer = json_decode( $result, true );
echo ' <br> json answer <br>';
print_r ( $json_answer );
echo '<br>--------- <br>';
echo ' <br> json error <br>';

print_r ( json_last_error_msg() );

echo '<br>--------- <br>';

curl_close($ch2);

这是输出

Result
irrelevant_path\index.php:1155: string(140) "HTTP/1.1 201 Created Location: /rest/session_b4b8e5ce3f709c452b3dfc94e9273a0d; Set-Cookie: sessionID=b4b8e5ce3f709c452b3dfc94e9273a0d; "
---------

json answer

---------

json error
Syntax error
--------- 

1 个答案:

答案 0 :(得分:0)

您似乎正在使用JSON获得答案,您可以使用

转换为数组

json_decode($ json_data) 它会将json数据转换为数组格式。

希望有所帮助