手机号199段 提示格式不正确

master
tping 5 years ago
parent a0c5ded9b8
commit 6fcb9a5662

@ -1540,7 +1540,11 @@ class UserController extends BaseController
{
$data = json_decode(base64_decode(file_get_contents("php://input")), true);
$phone = $data['phone'];
if (!preg_match('/^((13[0-9])|(14[5,7,9])|(15[^4])|(18[0-9])|(17[0,1,3,5,6,7,8]))\\d{8}$/', $phone)) {
/* if (!preg_match('/^((13[0-9])|(14[5,7,9])|(15[^4])|(18[0-9])|(17[0,1,3,5,6,7,8]))\\d{8}$/', $phone)) {
$this -> new_set_message(1098, "手机格式不正确");
die;
} */
if (!preg_match('/^[1]([3-9])[0-9]{9}$/', $phone)) {
$this->new_set_message(1098, "手机格式不正确");
die;
}

Loading…
Cancel
Save