php正则验证手机号码时间:2022-08-01 20:43:47 protected function checkphone(){ if(preg_match("/^1[34578]\d{9}$/", $phone)){ return false; }else{ return true; } }