Authored by zhoushuo

Merge branch 'develop' into 'master'

为压测 更改手机号验证  999开头的号码也算手机号



See merge request !3
... ... @@ -149,7 +149,7 @@ class Facade_Auth
*/
public static function isMobile($mobile)
{
return preg_match('/^1[3|4|5|7|8][0-9]\d{8}$/', $mobile);
return preg_match('/^1[3|4|5|7|8][0-9]|999\d{8}$/', $mobile);
}
/**
... ...