kgaughan (owner)

Revisions

gist: 30791 Download_button fork
public
Public Clone URL: git://gist.github.com/30791.git
Embed All Files: show embed
Checking if a hostname is well-formed. #
1
2
3
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);
}