02 if(!function_exists('get_headers')){
03 関数 get_headers($url,$format=0){
04 $url=parse_url($url);
05 $end="rnrn";
06 $fp=fsockopen($url['host'],(empty($url['port'])?80:$url['port']),$errno,$errstr,30);
07 if($fp){
08 $out="GET / HTTP/1.1rn";
09 $out.="ホスト: ".$url['host']."rn";
10 $out.="接続: 閉じるrnrn";
11 $var='';
12 fwrite($fp,$out);
13 while(!feof($fp)){
14 $var.=fgets($fp,1280);
15 if(strpos($var,$end))
16 休憩。
17 }
18 fclose($fp);
19 $var=preg_replace("/rnrn.*$/",'',$var);
20 $var=explode("rn",$var);
21 if($format){
22 foreach($var as $i){
23 if(preg_match('/^([a-zA-Z -]+): +(.*)$/',$i,$parts))
24 $v[$parts[1]]=$parts[2];
25 }
26 $v を返す;
27 }その他{
28 $var を返します。
29 }
30 }
31 }
32 }
33 echo '
';34 print_r(get_headers('http://www.jb51.net'));