如何在PHP中的POST请求后获取HTTP响应头?

时间:2011-06-30 09:32:39

标签: php http-headers httpwebrequest

我想知道在不使用cURL的情况下,在PHP中的POST请求之后是否可以读取/解析HTTP响应头..

我在IIS7下有PHP 5 我用来POST的代码是: -

$url="http://www.google.com/accounts/ClientLogin";
$postdata = http_build_query(
    array(
        'accountType' => 'GOOGLE',
        'Email' => 'xxxxx@gmail.com',
        'Passwd' => 'xxxxxx',
        'service' => 'fusiontables',
        'source' => 'fusiontables query'
    )
);
$opts = array('http' =>
    array(
        'header'  => 'Content-type: application/x-www-form-urlencoded',
        'method'  => 'POST',
        'content' => $postdata
    )
);
$context  = stream_context_create($opts);
$result = file_get_contents($url, false, $context);

上面,我正在对谷歌进行简单的ClientLogin身份验证,我想获得在标头中返回的Auth令牌。回显$ result只给出正文内容,而不是包含auth令牌数据的标题。

2 个答案:

答案 0 :(得分:1)

函数get_headers()可能是您要查找的函数。

http://php.net/manual/en/function.get-headers.php

答案 1 :(得分:1)

使用ignore_errors上下文选项(documentation):

$opts = array('http' =>
    array(
        'header'  => 'Content-type: application/x-www-form-urlencoded',
        'method'  => 'POST',
        'content' => $postdata,
        'ignore_errors' => true,
    )
);

此外,也许使用fopen而不是file_get_contents。然后,您可以致电stream_get_meta_data($fp)获取标题,请参阅上述链接中的Example #2