Toggle navigation
Toggle navigation
This project
Loading...
Sign in
web
/
sso
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Plain Diff
Browse Files
Authored by
zhoushuo
2016-09-23 17:00:06 +0800
Commit
b8704928ae78a012d8cbb22165d5c5dc65c8d6c6
2 parents
22ea5341
d80b6eac
Merge branch 'develop' into 'master'
为压测 更改手机号验证 999开头的号码也算手机号 See merge request
!3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
facade/Auth.class.php
facade/Auth.class.php
View file @
b870492
...
...
@@ -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
);
}
/**
...
...
Please
register
or
login
to post a comment