一個實用的PHP函數代碼,正則表達式驗證手機號碼的正確性和查詢手機號碼歸屬地,下面來看這個函數的具體代碼:
view sourceprint?01
02// 手機號碼驗證
03function checkMobileValidity($mobilephone){
04$exp = "/^13[0-9]{1}[0-9]{8}$|15[012356789]{1}[0-9]{8}$|18[012356789]{1}[0-9]{8}$|14[57]{1}[0-9]$/";
05if(preg_match($exp,$mobilephone)){
06return true;
07}else{
08return false;
09}
10}
11// 手機號碼歸屬地
12function checkMobilePlace($mobilephone){
13$url = "http://tcc.taobao.com/cc/json/mobile_tel_segment.htm?tel=".$mobilephone."&t=".time();
14$content = file_get_contents($url);
15$p = substr($content, 56, 4);
16$mo = substr($content, 81, 4);
17return $str = conv2utf8($p).conv2utf8($mo);
18}
19?>
查詢手機歸屬地是調用了淘寶的手機歸屬地資源,請注意這個頁面地址,若失效,可在淘寶查找正確的地址。