Skip to content

Instantly share code, notes, and snippets.

@leeeboo
Created July 25, 2015 08:40
Show Gist options
  • Select an option

  • Save leeeboo/8fbcd8cf3c68d6bec8b3 to your computer and use it in GitHub Desktop.

Select an option

Save leeeboo/8fbcd8cf3c68d6bec8b3 to your computer and use it in GitHub Desktop.
检测网址
function check_url($url) {
$data = parse_url($url);
if (empty($data['scheme']) || empty($data['host'])) {
return false;
}
$url = $data['scheme'] . '://' . $data['host'];
if(!filter_var($url, FILTER_VALIDATE_URL)) {
return false;
}
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment