How to get HTTPS response headers in PHP?
ゅ﹎*手座゛
ゅ﹎*手座゛ 2017-09-17 03:46:09
0
1
893

Like the title

ゅ﹎*手座゛
ゅ﹎*手座゛

reply all(1)
phpcn_u2434

Use the apache_request_headers function to obtain, such as

$headers = apache_request_headers();

foreach ($headers as $header => $value) {
    echo "$header: $value <br />\n";
}
获取到的信息就是
Accept: */*
Accept-Language: en-us
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/4.0
Host: www.example.com
Connection: Keep-Alive


Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template