本文章來給各位同學介紹一個自己寫的php 手機歸屬地查詢函數,原理很簡單,實現也不難,相信大家都看的懂。 代碼如下 復制代碼
function get_area($mob){
$mob=substr($mob,0,7);
if(
$handle=@fopen('mob.dat','rb'))
{
@flock($handle,LOCK_SH);
$string=@fread($handle,@filesize('mob.dat'));
@fclose($handle);
}
$string=strstr($string,$mob);
$num=strpos($string,"n");
$end=substr($string,0,$num);
list($a,$area)=explode(",",$end);
return $area;
} //demo
echo get_area('13000000000');
歸屬地數據文件下載:mob.dat
http://l4.yunpan.cn/lk/QvYCBFP6TVBjy