Authored by 於志远

999测试号

... ... @@ -149,7 +149,13 @@ class Facade_Auth
*/
public static function isMobile($mobile)
{
return preg_match('/^1[3|4|5|7|8][0-9]\d{8}$/', $mobile);
//999开头测试手机号直接通过验证
if(is_numeric($mobile) && strpos($mobile, '999') === 0){
$ret = true;
}else{
$ret = preg_match('/^1[3|4|5|7|8][0-9]\d{8}$/', $mobile);
}
return $ret;
}
/**
... ...