程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP手機號碼歸屬地查詢代碼(API接口/mysql)

PHP手機號碼歸屬地查詢代碼(API接口/mysql)

編輯:關於PHP編程

文章來介紹一下關於手機號碼歸屬地實現方法,我們可以利用api接口與mysql+php來實例有需要的同學看看。

 

首先我們介紹使用自己的數據庫查詢多個手機號碼,那還是建議你擁有一個自己的的手機號碼數據庫。正常情況下,只是滿足一般查詢的話,你不需要去購買專業版的手機號碼數據庫,增加無謂成本。我免費為你提供一個ACCESS數據庫,包含17萬多條數據,常用的130-139、150-159以及180-189開頭手機號碼段都在其中,你可以借助數據庫工具輕松地將它轉換成MYSQL或其它版本數據庫

最新手機號碼數據庫下載地址:http://www.bKjia.c0m/down/phone-number-database.rar

PHP+MYSQL手機號碼歸屬地查詢實現方法
通過上面的介紹,我們已經有了自己的MYSQL數據表。這個表結構很簡單:ID(序號),code(區號),num(手機號碼段),cardtype(手機卡類型),city(手機號碼歸屬地)。注意,這個表存儲數據量很大,應當根據你的sql查詢語句,建立合適的索引字段,以提高查詢效率。
1)獲取手機號碼歸屬地,我們只需要通過判斷手機號碼段歸屬地即可。主要通過以下函數實現,其中GetAlabNum、cn_substr、str_replace都是字符串操作函數,$dsql是數據庫操作類。

 代碼如下 復制代碼 function GetTelphone($tel)
{
 global $city,$dsql;
 if(isset($tel)) $tel = GetAlabNum(trim($tel));//GetAlabNum函數用於替換全角數字,將可能存在的非法手機號碼轉換為數字;trim去除多余空格。
 else return false;
 if(strlen($tel) < 7) return false;
 $tel = cn_substr($tel, 11);//先截取11個字符,防止是多個手機號碼
 //if(!is_numeric($tel)) return false;
 if(cn_substr($tel, 1) == "0")//判斷手機號碼是否以0開頭,這種情況可能會是座機號以0開頭
 {
  if(cn_substr($tel, 2) == "01" || cn_substr($tel, 2) == "02") $tel = cn_substr($tel, 3);//3位區號
  else $tel = cn_substr($tel, 4);
  $row = $dsql->GetOne(" Select code,city as dd from `dede_tel` where code='$tel' group by code ");
 }
 else
 {
  $tel = cn_substr($tel, 7);
  $row = $dsql->GetOne(" Select num,city as dd from `dede_tel` where num='$tel' ");
 }
 $city = $row['dd'];
 if($city)
 {
  $city = str_replace("省", "-", $city);
  $city = str_replace("市", "", $city);
  $city = "<br /><font color="green">[".$city."]</font>";
  return $city;
 }
}

api實現方法,這裡不需要自己的數據庫但有限制了
主要使用curl實現,需要開啟php對curl的支持。

 代碼如下 復制代碼 <?php
header(“Content-Type:text/html;charset=utf-8″);
if (isset($_GET['number'])) {
$url = ‘http://webservice.webxml.com.cn/WebServices/MobileCodeWS.asmx/getMobileCodeInfo’;
$number = $_GET['number'];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, “mobileCode={$number}&userId=”);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$data = curl_exec($ch);
curl_close($ch);
$data = simplexml_load_string($data);
if (strpos($data, ‘http://’)) {
echo ‘手機號碼格式錯誤!’;
} else {
echo $data;
}
}
?>
<form action=”mobile.php” method=”get”>
手機號碼: <input type=”text” name=”number” /> <input type=”submit” value=”提交” />
</form>

與php mysql手機號碼歸屬地查詢這個會慢很多,畢竟要通過第三方法數據。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved