Home  >  Article  >  类库下载  >  PHP sends request headers and receives print request headers

PHP sends request headers and receives print request headers

高洛峰
高洛峰Original
2016-10-10 10:25:312054browse

PHP sends request headers and receives print request headers

1. Send request headers

//发送地址
$url = 'http://127.0.0.1/2.php';
//请求头内容
$headers = array(
    'Authorization: '.$basic,
    'suibianzhi: '.$basic,
);
//使用curl发送
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$result = curl_exec($ch);
curl_close($ch);
echo $result;

2. Receive and print request headers

$headers = array();
foreach ($_SERVER as $key => $value) {
    if ('HTTP_' == substr($key, 0, 5)) {
        $headers[str_replace('_', '-', substr($key, 5))] = $value;
    }
}    
echo &#39;<pre class="brush:php;toolbar:false">&#39;;
print_r($headers);


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Related articles

See more