怎样读取stream_get_meta_data各项目数据
使用stream_get_meta_data()函数,可以获得网页的各meta项目信息,其中就包括有header的信息,事实上,使用stream_get_meta_data比header函数获得的信息量更加丰富更加多,为网站开发提供很好的辅助作用。
不过当我第一次接触到stream_get_meta_data时,先是一愣,不是因为它信息量大,而是对返回的数据格式表示迷惑。我们先来看看stream_get_meta_data的返回原始数据格式。
源代码:
$thisurl = “http://www.webkaka.com/”;
$fp = fopen($thisurl, ‘r’);
print_r(stream_get_meta_data($fp));
返回结果如下:
Array
(
[wrapper_data] => Array
(
[0] => HTTP/1.1 200 OK
[1] => Cache-Control: max-age=86400
[2] => Content-Length: 76083
[3] => Content-Type: text/html
[4] => Content-Location: http://www.webkaka.com/index.html
[5] => Last-Modified: Fri, 19 Jul 2013 09:55:11 GMT
[6] => Accept-Ranges: bytes
[7] => ETag: “94f53df6684ce1:5cb3”
[8] => Server: Microsoft-IIS/6.0
[9] => X-Powered-By: ASP.NET
[10] => Date: Fri, 19 Jul 2013 10:03:56 GMT
[11] => Connection: close
)
[wrapper_type] => http
[stream_type] => tcp_socket
[mode] => r+
[unread_bytes] => 1087
[seekable] =>
[uri] => http://www.webkaka.com/
[timed_out] =>
[blocked] => 1
[eof] =>
)
输出格式是Array,我们要转换,才可以获得各个项目的信息,并个性化显示在网页上。
经过测试,如下方法有效:
<?php
$url = “http://www.webkaka.com/”;
if(!($fp = @fopen($url, ‘r’)))
return NULL;
$meta = stream_get_meta_data($fp);
foreach(array_keys($meta) as $h){
$v = $meta[$h];
echo “”.$h.”: “.$v.”<br/>”;
if(is_array($v)){
foreach(array_keys($v) as $hh){
$vv = $v[$hh];
echo “”.$hh.”: “.$vv.”<br/>”;
}
}
}
fclose($fp);
?>
经过如上方法的处理,输出的结果就可以更加容易被调用。结果如下:
wrapper_data: Array
0: HTTP/1.1 200 OK
1: Cache-Control: max-age=86400
2: Content-Length: 76083
3: Content-Type: text/html
4: Content-Location: http://www.webkaka.com/index.html
5: Last-Modified: Fri, 19 Jul 2013 09:55:11 GMT
6: Accept-Ranges: bytes
7: ETag: “94f53df6684ce1:5cb3”
8: Server: Microsoft-IIS/6.0
9: X-Powered-By: ASP.NET
10: Date: Fri, 19 Jul 2013 10:24:21 GMT
11: Connection: close
wrapper_type: http
stream_type: tcp_socket
mode: r+
unread_bytes: 1087
seekable:
uri: http://www.webkaka.com/
timed_out:
blocked: 1
eof:
补充资料
stream_get_meta_data — 从封装协议文件指针中取得报头/元数据
array stream_get_meta_data ( int $fp )
返回现有 stream 的信息。可以是任何通过 fopen(), fsockopen() 和 pfsockopen() 建立的流。返回的数组包含以下项目:
timed_out (bool) – 如果在上次调用 fread() 或者 fgets() 中等待数据时流超时了则为 TRUE。
blocked (bool) – 如果流处于阻塞 IO 模式时为 TRUE。参见 stream_set_blocking()。
eof (bool) – 如果流到达文件末尾时为 TRUE。注意对于 socket 流甚至当 unread_bytes 为非零值时也可以为 TRUE。要测定是否有更多数据可读,用 feof() 替代读取本项目的值。
unread_bytes (int) – 当前在 PHP 自己的内部缓冲区中的字节数。