file_get_contents访问http取回响应头

发布时间:2020-07-17编辑:脚本学堂
本文介绍下,在php中使用file_get_contents访问http取回响应头的方法,有需要的朋友做个参考。

php 的 file_get_contents 可以直接用 url 读取网页,用来抓内容很方便。
而且用 context 参数指定请求头。

不过php手册中,对 file_get_contents 没说怎么取得响应头。
实际上,php 文件函数能访问 http 都是用的 stream wrapper 的东西,把不同形式的流包装成文件。

在用 file_get_contents 访问 http 时,stream wrapper 会把响应头放到当前作用域下的 $http_response_header 数组变量里。

例子:
 

复制代码 代码示例:
<?php
file_get_contents('http://www.jb200.com/');
var_dump($http_response_header);