FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
gitutorial/String Functions/mobnumvalidation.php at training_programs · dresh/gitutorial · GitHub
dresh
/
gitutorial
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
gitutorial
/
String Functions
/
mobnumvalidation.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
41 lines (34 loc) · 874 Bytes
Breadcrumbs
gitutorial
/
String Functions
/
mobnumvalidation.php
Copy path
File metadata and controls
41 lines (34 loc) · 874 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
function
mobilenumvalid
(
$
num
){
if
(
is_numeric
(
$
num
)){
return
true
;
}
else
{
return
false
;
echo
"
num is not valid
"
;
}
$
len
=
strlen
(
$
num
);
if
(
$
len
==
11
){
if
(
$
num
[
0
] ==
'
0
'
){
return
"
+91
"
.
substr
(
$
num
,
1
);
}
else
{
return
$
num
;
}
}
elseif
(
$
len
==
10
){
return
"
+91
"
.
$
num
;
}
else
{
return
false
;
}
}
$
num
=
8787876533
;
mobilenumvalid
(
$
num
);
//$pattern = '/^(((\+|00){1}91(\s|\-){0,1})?([0-9]{0,6}(\s|\-){0,1})?)?([0-9]{8,10})$/';
if
(
preg_match
(
'
/^(((\+|00){1}91(\s|\-){0,1})?([0-9]{0,6}(\s|\-){0,1})?)?([0-9]{8,10})$/
'
,
$
num
)){
echo
"
valid mobnum
"
;
}
else
{
echo
"
not valid
"
;
}
Back
|
FazBrowse Home
|
New Git URL