Skip to content

Instantly share code, notes, and snippets.

@webkader
Created July 13, 2015 18:31
Show Gist options
  • Save webkader/6afba79f9125af5295dc to your computer and use it in GitHub Desktop.
Save webkader/6afba79f9125af5295dc to your computer and use it in GitHub Desktop.
Check if a string is a valid url
function isValidUrl($url)
{
if (empty($url)) {
return false;
}
// only ASCII URL
if (filter_var($url, FILTER_VALIDATE_URL)) {
return true;
} else {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment