php正则验证手机号码
protected function checkphone(){
if(preg_match("/^1[34578]\d{9}$/", $phone)){
return false;
}else{
return true;
}
}
protected function checkphone(){
if(preg_match("/^1[34578]\d{9}$/", $phone)){
return false;
}else{
return true;
}
}