0

こんにちは私はPHPスクリプトで次のようないくつかのヘッダーを送信しようとしています

$headers[] = "BATCH_TYPE: XML_SINGLE"; 
$headers[] = "VENDOR_ID: 56309";

しかし、それらは次のように受け取られています。

バッチタイプベンダーID

..意図された、または必要とされたものではありません-これは私に問題を引き起こしています。

誰もがなぜまたはどのようにソートするか知っていますか?

ありがとう、

<?php

function httpsPost($Url, $xml_data, $headers)
{
   // Initialisation
   $ch=curl_init();
   // Set parameters
   curl_setopt($ch, CURLOPT_FORBID_REUSE, 1); 
   curl_setopt($ch, CURLOPT_FRESH_CONNECT, 1);
   curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
   curl_setopt($ch, CURLOPT_URL, $Url);
   // Return a variable instead of posting it directly
   curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
   curl_setopt($ch, CURLOPT_USERPWD,"username:password");

   // Activate the POST method
   curl_setopt($ch, CURLOPT_POST, 1) ;
   // Request
   curl_setopt($ch, CURLOPT_POSTFIELDS, $xml_data);
   curl_setopt($ch, CURLOPT_TIMEOUT, 999);

   curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
   curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);

   // execute the connexion
   $result = curl_exec($ch);
   // Close it
   curl_close($ch);
   return $result;
}

$request_file = "./post_this.xml"; 
$fh = fopen($request_file, 'r'); 
$xml_data = fread($fh, filesize($request_file));

fclose($fh);    

$url = 'http://www.xhaus.com/headers';

$headers = array();
$headers[] = "Expect:";
$headers[] = "Accept: text/xml";

$headers[] = "BATCH_TYPE: XML_SINGLE"; 
$headers[] = "BATCH_COUNT: 1";
$headers[] = "VENDOR_ID: 54367";


$Response = httpsPost($url, $xml_data, $headers);

echo $Response;

?>
4

4 に答える 4

0

これらのヘッダーをどのようにチェックしていますか?私は次のコードで自分自身を試しました:-

<?php

header("BATCH_TYPE: XML_SINGLE");

そして、以下を取り戻しました:-

HTTP/1.1 200 OK
Date: Wed, 10 Jun 2009 08:56:54 GMT
Server: Apache/2.2.11 (Ubuntu) PHP/5.2.6-3ubuntu4.1 with Suhosin-Patch
X-Powered-By: PHP/5.2.6-3ubuntu4.1
BATCH_TYPE: XML_SINGLE
Vary: Accept-Encoding
Content-Length: 0
Content-Type: text/html
于 2009-06-10T08:58:09.813 に答える
0

fsockopen()を使用して、必要なものを手動で書き込み/読み取ります。CURLまたはsmthの実装かどうかはわかりません。それ以外の場合、プロキシのようにヘッダーは変更されません。確かに何か良いことをしたいのなら、自分でやるだけです;)。実際、HTTPリクエストを作成して、開いているソケットに書き込むのはとても簡単です...

$req = "POST $url HTTP/1.0\n";
$headers[] = 'VENDOR_ID: 1234';
$headers[] = 'MY_OTHER_HEADER: xxxxx';
$req .= implode("\n", $headers);
$req .= "\n\n" . $request_body;

$sock = fsockopen($host, 80, $errno, $errstr, $timeout);
fwrite($sock, $req, strlen($req));

$return = '';
do 
{
    $return .= fread($sock, 512);
} while (!feof($sock));

fclose($sock);

確かではありませんが、私にはそのsmthのようです。このように、PEARのどこかですでに行われています...

于 2009-06-10T11:00:07.273 に答える
0

次のコードを変更します。

curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);

これに:

foreach($headers as $header)
    curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
于 2009-06-11T07:46:57.063 に答える