Skip to content

Instantly share code, notes, and snippets.

@weivall
Created August 1, 2012 11:21
Show Gist options
  • Save weivall/3225920 to your computer and use it in GitHub Desktop.
Save weivall/3225920 to your computer and use it in GitHub Desktop.
function is_url($url)
function is_url($url) {
return preg_match('|^http(s)?://[a-z0-9-]+(.[a-z0-9-]+)*(:[0-9]+)?(/.*)?$|i', $url);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment