标题: [求助]监视QQ上线的方法。。
时间: 2013-08-27
『回复列表(16|隐藏机器人聊天)』
<?php
$url='http://wpa.qq.com/pa?p=1:你的QQ号:52&r='.time();
$array=get_headers($url,true);
$array=get_headers($array['Location'],true);
if($array['Content-Length']==1729){
echo '在线';
}elseif($array['Content-Length']==1627){
echo '不在线';
}
?>