如何在PHP POST请求后获取HTTP响应头文件?
我想知道是否可以在不使用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身份验证谷歌,我想获得身份验证令牌返回在标题。 回声$结果只给出正文内容,而不是包含验证令牌数据的标题。
函数get_headers()可能是您正在查找的函数。
http://php.net/manual/en/function.get-headers.php
使用ignore_errors
上下文选项(文档):
$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)
来获取标题,请参阅上述链接中的示例2。
上一篇: How to get HTTP response headers after POST request in PHP?