Home >Backend Development >PHP Tutorial >判断ICQ是否在线的代码_PHP

判断ICQ是否在线的代码_PHP

WBOY
WBOYOriginal
2016-06-01 12:28:57783browse

//判断ICQ是否在线的代码


function get_status($uin)
{
$fp = fsockopen ("wwp.icq.com", 80, &$errno, &$errstr, 30);
if(!$fp)
{
echo "$errstr ($errno)
";
}
else
{
fputs($fp, "GET /scripts/online.dll?icq=$uin&img=5 HTTP/1.0 ");
$do = 'yes';
while(!feof($fp))
{
$line = fgets ($fp,128);
$do = ($do == 'yes')?'yes':(eregi("^GIF89", $line))?'yes':'no';
//echo $line;

if($do == 'yes')
{
if(ereg("@", $line))
{
return 'online';
}
elseif(ereg("醱", $line))
{
return 'offline';
}
elseif(ereg("S", $line))
{
return 'disabled';
}
}

}
fclose($fp);
}
return 'unknown!';
}


$uin="72485936"; // sonymusic 的ICQ,呵呵。
echo get_status($uin);
// offline
?>

//作者/来源:Alpha.Z

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn