未正确接收cURL标头

时间:2015-10-05 11:14:31

标签: php curl

概述

我正在尝试通过cURL发送XML文件。

除了以外,所有内容都正常工作,这些标头未正确发送。

他们为什么没有被收到?

代码

test.php的

$xml = file_get_contents("test.xml");

//These are the CUSTOM HEADERS being set in an array for later:
$data = array(
    'x-meta-feed-type: Latest',
    'x-meta-feed-parameters: feed params',
    'x-meta-default-filename: '.time().'.xml',
    'x-meta-game-id: f790722',
    'x-meta-competition-id: c420',
    'x-meta-season-id: 2014',
    'x-meta-gamesystem-id: SUD_CL',
    'x-meta-matchday: 7',
    'x-meta-away-team-id: t2578',
    'x-meta-home-team-id: t764',
    'x-meta-game-status: 11',
    'x-meta-language: en',
    'x-meta-production-server: local',
    'x-meta-production-server-timestamp: '.time(),
    'x-meta-production-server-module: 1',
    ' x-meta-mime-type: text/xml',
    'encoding: UTF-8'
);

//set URL
$url = 'http://www.example.com/receive.php';

// Get the curl session object
$session = curl_init($url);

// set url to post to
curl_setopt($session, CURLOPT_URL,$url);

// Tell curl to use HTTP POST;
curl_setopt($session, CURLOPT_POST, true);
curl_setopt($session, CURLOPT_HTTPHEADER, $data);

// Tell curl that this is the body of the POST
curl_setopt($session, CURLOPT_POSTFIELDS, $xml);

// Tell curl not to return headers, and return the response
curl_setopt($session, CURLOPT_HEADER, true);
curl_setopt($session, CURLOPT_RETURNTRANSFER, true);
curl_setopt($session, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);

// allow redirects
curl_setopt($session, CURLOPT_FOLLOWLOCATION, true);
$response = curl_exec($session);
if (curl_errno($session)) {
    print "Error: " . curl_error($session);
} else {
    // Show me the result 
    echo $response;
    curl_close($session);
}
curl_close($session);

receive.php

$headers = apache_request_headers();

$post_data = file_get_contents('php://input');

$posts = array (
    'feedType' => isset($headers['x-meta-feed-type']) ? $headers['x-meta-feed-type'] : '',
    'feedParameters' => isset($headers['x-meta-feed-parameters']) ? $headers['x-meta-feed-parameters'] : '',
    'defaultFilename' => isset($headers['x-meta-default-filename']) ? $headers['x-meta-default-filename'] : '',
    'deliveryType' => isset($headers['x-meta-game-id']) ? $headers['x-meta-game-id'] : '',
    'messageDigest' => md5($post_data),
    'competitionId' => isset($headers['x-meta-competition-id']) ? $headers['x-meta-competition-id'] : '',
    'seasonId' => isset($headers['x-meta-season-id']) ? $headers['x-meta-season-id'] : '',
    'gameId' => isset($headers['x-meta-game-id']) ? $headers['x-meta-game-id'] : '',
    'gameSystemId' => isset($headers['x-meta-gamesystem-id']) ? $headers['x-meta-gamesystem-id'] : '',
    'matchday' => isset($headers['x-meta-matchday']) ? $headers['x-meta-matchday'] : '',
    'awayTeamId' => isset($headers['x-meta-away-team-id'])?$headers['x-meta-away-team-id']:'',
    'homeTeamId' => isset($headers['x-meta-home-team-id']) ? $headers['x-meta-home-team-id'] : '',
    'gameStatus' => isset($headers['x-meta-game-status']) ? $headers['x-meta-game-status'] : '',
    'language' => isset($headers['x-meta-language']) ? $headers['x-meta-language'] : '',
    'productionServer' => isset($headers['x-meta-production-server']) ? $headers['x-meta-production-server'] : '',
    'productionServerTimeStamp' => isset($headers['x-meta-production-server-timestamp']) ? $headers['x-meta-production-server-timestamp'] : '',
    'productionServerModule' => isset($headers['x-meta-production-server-module']) ? $headers['x-meta-production-server-module'] : '',
    'mimeType' => 'text/xml',
    'encoding' => isset($headers['x-meta-encoding']) ? $headers['x-meta-encoding'] : '',
    'content' => $post_data
);

exit(print_r($posts));

输出

HTTP/1.1 100 Continue

HTTP/1.1 200 OK
Date: Mon, 05 Oct 2015 11:13:20 GMT
Server: Apache
X-Powered-By: PHP/5.4.45-0+deb7u1
Vary: User-Agent,Accept-Encoding
Transfer-Encoding: chunked
Content-Type: text/html

Array
(
    [feedType] => 
    [feedParameters] => 
    [defaultFilename] => 
    [deliveryType] => 
    [messageDigest] => 144ce144c73a12ea51a03ac1ef1256e5
    [competitionId] => 
    [seasonId] => 
    [gameId] => 
    [gameSystemId] => 
    [matchday] => 
    [awayTeamId] => 
    [homeTeamId] => 
    [gameStatus] => 
    [language] => 
    [productionServer] => 
    [productionServerTimeStamp] => 
    [productionServerModule] => 
    [mimeType] => text/xml
    [encoding] => 
    [content] => File Content
) 1

2 个答案:

答案 0 :(得分:0)

如果我在var_dump对象上使用$headers(通过apache_request_headers检索),我会看到所有标头标记的首字母大写:

HTTP/1.1 100 Continue

HTTP/1.1 200 OK
Date: Mon, 05 Oct 2015 11:30:20 GMT
Server: Apache
X-Powered-By: PHP/5.4.45-0+deb7u1
Vary: User-Agent,Accept-Encoding
Transfer-Encoding: chunked
Content-Type: text/html

array(24) {
  ["Connection"]=>
  string(5) "close"
  ["Expect"]=>
  string(12) "100-continue"
  ["Content-Type"]=>
  string(33) "application/x-www-form-urlencoded"
  ["Content-Length"]=>
  string(5) "90166"
  ["Encoding"]=>
  string(5) "UTF-8"
  ["X-Meta-Mime-Type"]=>
  string(8) "text/xml"
  ["X-Meta-Production-Server-Module"]=>
  string(1) "1"
  ["X-Meta-Production-Server-Timestamp"]=>
  string(10) "1444044620"
  ["X-Meta-Production-Server"]=>
  string(6) "server"
  ["X-Meta-Language"]=>
  string(2) "en"
  ["X-Meta-Game-Status"]=>
  string(2) "11"
  ["X-Meta-Home-Team-Id"]=>
  string(4) "t764"
  ["X-Meta-Away-Team-Id"]=>
  string(5) "t2578"
  ["X-Meta-Matchday"]=>
  string(1) "7"
  ["X-Meta-Gamesystem-Id"]=>
  string(6) "SUD_CL"
  ["X-Meta-Season-Id"]=>
  string(4) "2014"
  ["X-Meta-Competition-Id"]=>
  string(4) "c420"
  ["X-Meta-Game-Id"]=>
  string(7) "f790722"
  ["X-Meta-Default-Filename"]=>
  string(26) "opta-1444044620-bIb24r.xml"
  ["X-Meta-Feed-Parameters"]=>
  string(11) "feed params"
  ["X-Meta-Feed-Type"]=>
  string(6) "Latest"
  ["Accept"]=>
  string(3) "*/*"
  ["Host"]=>
  string(19) "example.com"
  ["User-Agent"]=>
  string(109) "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
}

虽然这很奇怪 - 而且我很好奇为什么会发生这种情况,因为标题在发送时没有大写 - 解决方案是简单地更改接收页面以检查大小写的自定义标题,因为它们区分大小写

答案 1 :(得分:-1)

当您在post中发送xml数据时,将标题Content-Type添加到header $ data中的application / xml或text / xml。

$data = array(
    'x-meta-feed-type: Latest',
    'x-meta-feed-parameters: feed params',
    'x-meta-default-filename: '.time().'.xml',
    'x-meta-game-id: f790722',
    'x-meta-competition-id: c420',
    'x-meta-season-id: 2014',
    'x-meta-gamesystem-id: SUD_CL',
    'x-meta-matchday: 7',
    'x-meta-away-team-id: t2578',
    'x-meta-home-team-id: t764',
    'x-meta-game-status: 11',
    'x-meta-language: en',
    'x-meta-production-server: local',
    'x-meta-production-server-timestamp: '.time(),
    'x-meta-production-server-module: 1',
    ' x-meta-mime-type: text/xml',
    'encoding: UTF-8',
    'Content-Type : application/xml'
);