如何使用php
获取此网页(如下)的页眉信息此网站Check website HTTP Server Header Information
结果:
HTTP Status for: "http://www.abc.com"
The title is: ""
Keywords: ""
Description: ""
HTTP/1.1 200 OK
Date: Fri, 22 Feb 2013 12:00:56 GMT
Server: Apache/2.2.3 (Debian) PHP/4.4.4-8+etch6
X-Powered-By: PHP/4.4.4-8+etch6
Keep-Alive: timeout=300
Connection: Keep-Alive
Content-Type: text/html
答案 0 :(得分:4)
使用PHP函数get_headers
:
$headers = get_headers($url, 1);
请参阅:http://php.net/manual/en/function.get-headers.php
如果您还想要元关键字和元描述,请使用get_meta_tags():
$tags = get_meta_tags($url);
答案 1 :(得分:3)
您可以使用PHP函数get_header();
。
此函数将返回包含所有标题字段的数组。
有关详细信息,请参阅:http://php.net/manual/en/function.get-headers.php
答案 2 :(得分:2)
您可以使用:
print_r(get_headers($url));