Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mbas-shortener
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
mbas-shortener
Commits
da59f645
Commit
da59f645
authored
Jan 28, 2016
by
Vitalik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Regex valid url
parent
0cd96e72
Pipeline
#179
skipped
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
helper.php
helper.php
+5
-2
No files found.
helper.php
View file @
da59f645
...
...
@@ -124,8 +124,11 @@ function validate_url($url)
$url
=
'http://'
.
$url
;
}
$url
=
filter_var
(
$url
,
FILTER_SANITIZE_URL
);
$url
=
filter_var
(
$url
,
FILTER_VALIDATE_URL
);
preg_match
(
"/[
\\
w]+(
\\
.[
\\
w]+)*(
\\
.[a-z]
{
2,6
}
)/i"
,
$url
,
$matches
);
if
(
empty
(
$matches
[
0
]))
{
$url
=
false
;
}
return
$url
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment