PHP8.1.21版本已发布
vue8.1.21版本已发布
jquery8.1.21版本已发布

php get_headers函数讲解及用法介绍

原创
2016-07-25 08:59:44 663浏览
  1. $url='http://bbs.it-home.org';
  2. print_r(get_headers($url));
  3. print_r(get_headers($url,1));
  4. ?>
复制代码

输出结果: Array ( [0] => HTTP/1.1 200 OK [1] => Date: Sat, 29 May 2004 12:28:13 GMT [2] => Server: Apache/1.3.27 (Unix) (Red-Hat/Linux) [3] => Last-Modified: Wed, 08 Jan 2003 23:11:55 GMT [4] => ETag: "3f80f-1b6-3e1cb03b" [5] => Accept-Ranges: bytes [6] => Content-Length: 438 [7] => Connection: close [8] => Content-Type: text/html ) Array ( [0] => HTTP/1.1 200 OK [Date] => Sat, 29 May 2004 12:28:14 GMT [Server] => Apache/1.3.27 (Unix) (Red-Hat/Linux) [Last-Modified] => Wed, 08 Jan 2003 23:11:55 GMT [ETag] => "3f80f-1b6-3e1cb03b" [Accept-Ranges] => bytes [Content-Length] => 438 [Connection] => close [Content-Type] => text/html )

有时为了获取服务器端响应信息时,经常会用到get_headers()函数,建议大家多写些代码,实际测试下,以加深理解。



声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。