How to get HTTP response headers after POST request in PHP?

I want to know if it's possible to read/parse the HTTP response header after a POST request in PHP without the use of cURL..

I have PHP 5 under IIS7 The code I use to POST is :-

$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);

Above, im doing a simple ClientLogin Authentication to google and I want to get the Auth token which returns in the header. Echo-ing $result only gives the body content and not headers which contains the auth token data.


The function get_headers() may be the one you are looking for.

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


Use the ignore_errors context option (documentation):

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

Also, maybe use fopen rather than file_get_contents . You can then call stream_get_meta_data($fp) to get the headers, see Example #2 on the above link.

链接地址: http://www.djcxy.com/p/87298.html

上一篇: 让mp3可寻址的PHP

下一篇: 如何在PHP POST请求后获取HTTP响应头文件?