Skip to content

Instantly share code, notes, and snippets.

@kgaughan
Created December 1, 2008 18:17
Show Gist options
  • Save kgaughan/30791 to your computer and use it in GitHub Desktop.
Save kgaughan/30791 to your computer and use it in GitHub Desktop.
function is_well_formed_hostname($host) {
return preg_match('~^(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)*[a-z](?:[a-z0-9-]*[a-z0-9])$~', $host);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment