时间:2021-07-01 10:21:17 帮助过:19人阅读
函数定义array get_headers ( string $url [, int $format = 0 ] )参数url 目标 URLformat 如果将可选的 format 参数设为 1,则 get_headers() 会解析相应的信息并设定数组的键名。
示例
$url='http://www.scutephp.com';
print_r(get_headers($url));
print_r(get_headers($url,1));?>
以上例程的输出类似于:
Array
()
Array
()
php 模拟get_headers函数。
具体代码如下:
if(!function_exists('get_headers')){
function get_headers($url,$format=0){
$url=parse_url($url);
$end="rnrn";
$fp=fsockopen($url['host'],(empty($url['port'])?80:$url['port']),$errno,$errstr,30);
if($fp){
$out="GET / HTTP/1.1rn";
$out.="Host: ".$url['host']."rn";
$out.="Connection: Closernrn";
$var='';
fwrite($fp,$out);
while(!feof($fp)){
$var.=fgets($fp,1280);
if(strpos($var,$end))
break;
}
fclose($fp);
$var=preg_replace("/rnrn.*$/",'',$var);
$var=explode("rn",$var);
if($format){
foreach($var as $i){
if(preg_match('/^([a-zA-Z -]+): +(.*)$/',$i,$parts))
$v[$parts[1]]=$parts[2];
}
return $v;
}else{
return $var;
}
}
}
}
echo '';
print_r(get_headers('http://www.scutephp.com/'));相关文章:PHP + AJAX 多进程批量 Ping 工具