コードをコピー コードは次のとおりです:
//携帯電話番号認証
function checkMobileValidity($mobilephone){
$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]$/";
if(preg_match($exp,$mobilephone)){
return true;
}else{
return false;
}
}
//携帯電話番号の位置 (return:広東省モバイルなど)
function checkMobilePlace($mobilephone){
$url = "http://tcc.taobao.com/cc/json/mobile_tel_segment.htm?tel=".$mobilephone."&t=".time( );
$content = file_get_contents($url);
$p = substr($content, 81, 4); .conv2utf8($mo );
}
//文字列エンコードを UTF8 に変換
function conv2utf8($text){
return mb_convert_encoding($text,'UTF-8','ASCII,GB2312,GB18030,GBK,UTF-8 ');
}
http://www.bkjia.com/PHPjc/326501.html
www.bkjia.comtruehttp://www.bkjia.com/PHPjc/326501.html技術記事次のようにコードをコピーします: ?php // 携帯電話番号検証関数 checkMobileValidity($mobilephone){ $exp = "/^13[0-9]{1}[0-9]{8}$|15[012356789] {1 }[0-9]{8}$|18[012356789]{1}[0-9]{8}$|14[...