php で応答ヘッダー情報を設定する方法は、fsockopen() 関数を使用して設定します。たとえば、[
この記事の動作環境: Windows10 システム、 php7、thinkpad t480 コンピューター。
PHP では、リクエスト サーバーの応答ヘッダー情報を設定する必要がある場合、fsockopen コンポーネントとcurl コンポーネントを使用できます。header() をすぐに思いつく友人もいるかもしれません。ただし、 header() 関数は、クライアント応答のヘッダー情報を設定するためにのみ使用できます。サーバーのヘッダー情報を設定することはできません。例を示して説明します。
例:
1. ヘッダー関数の使用法
header('WWW-Authenticate: Negotiate'); header('User-Agent:Mozilla/5.0);
複数のヘッダーを直接記述する必要があり、結合することはできません
##2. fsockopen 関数の使用法##1, php
<?php $fp = fsockopen("test.com", 80, $errno, $errstr, 30); if (!$fp) { echo "$errstr ($errno)<br />\n"; } else { $out = "GET /2.php HTTP/1.1\r\n"; $out .= "Host: test.com\r\n"; $out .= "name:longqiqi\r\n"; $out .= "Connection: Close\r\n\r\n"; fwrite($fp, $out); while (!feof($fp)) { echo fgets($fp, 128); } fclose($fp); } ?>
2, php
print_r(getallheaders());
3.curl コンポーネントの使用
1 、 php
<?php function FormatHeader($url, $myIp = null,$xml = null) { // 解悉url $temp = parse_url($url); $query = isset($temp['query']) ? $temp['query'] : ''; $path = isset($temp['path']) ? $temp['path'] : '/'; $header = array ( "POST {$path}?{$query} HTTP/1.1", "Host: {$temp['host']}", "Content-Type: text/xml; charset=utf-8", 'Accept: */*', "Referer: http://{$temp['host']}/", 'User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1)', "X-Forwarded-For: {$myIp}", "Content-length: 380", "Connection: Close" ); return $header; } $interface = 'http://test.com/2.php'; $header = FormatHeader($interface,'10.1.11.1'); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $interface); curl_setopt($ch, CURLOPT_HTTPHEADER, $header); //设置头信息的地方 curl_setopt($ch, CURLOPT_HEADER, 0); //不取得返回头信息 curl_setopt($ch, CURLOPT_TIMEOUT, 5); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $result = curl_exec($ch); var_dump($result); ?>
print_r(getallheaders());
推奨学習:
以上がPHPでレスポンスヘッダー情報を設定する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。