php手机号码归属地查询

php获取手机号码归属地 用户leaps/httpclient可直接用 file_get_contents代替该api接口自 2011年 sae平台上线稳定运行至今,增加了17号段的支持,欢迎各种采集注限制 并发10

function getmobileinfo($mobile)
{
$http = new httpclient ();
$response = $http->get ( ‘http://appyun.sinaapp.com/index.php?app=mobile&controller=index&action=api&outfmt=json&mobile=’.$mobile );
if ($response->gethttpcode () == ‘200’) {
$result = json_decode($response->getbody(),true);
return $result;
}
return false;
}

Posted in 未分类

发表评论