这个本来打算为挂Q写的。代码如下:
/***
* 批量查询QQ状态
*
@param array $qq QQ号码(一维数组)
* 返回一维数组(qq=>状态:1在线,0离线)
*/
function qqOnline($qq){
$get = implode(":",$qq) . ":";
$code = file_get_contents("
http://webpresence.qq.com/getonline?Type=2&".$get);
$code = str_replace("online",'$online',$code);
eval($code);
return array_combine($qq,$online);
}