php 正则判断是否是手机号码 最新

if(preg_match("/1[3458]{1}\d{9}$/",$phonenumber)){

     echo "是手机号码";

}else{

 echo "不是手机号码";

}


 

你可能感兴趣的:(PHP,正则)