Http POST请求获取标题和正文

时间:2014-12-19 18:51:21

标签: php post curl http-headers

我目前正在使用下面提到的代码来发出http post请求,它只返回body。我想要身体和标题。我如何使用file_get_content方法或CURL来获取正文和标题?

    $sURL = "url";
$sPD = "data";
$aHTTP = array(
  'http' => 
    array(
    'method'  => 'POST', 
    'header'  => "Content-Type: application/atom+xml"
    'content' => $sPD
  )
);
$context = stream_context_create($aHTTP);
$contents = file_get_contents($sURL, false, $context);

echo $contents;

1 个答案:

答案 0 :(得分:0)

尝试:

$context  = stream_context_create($aHTTP);
$stream   = fopen($sURL, 'r', false, $context);

$contents = stream_get_contents($stream);
$metadata = stream_get_meta_data($stream);

您也可以使用HTTP Functions(如果有)。