mirror of
https://github.com/pi-hole/web.git
synced 2025-12-24 20:55:28 +00:00
10 lines
343 B
PHP
10 lines
343 B
PHP
<?php
|
|
|
|
function is_valid_domain_name($domain_name)
|
|
{
|
|
return (preg_match("/^([a-z\d](-*[a-z\d])*)(\.([a-z\d](-*[a-z\d])*))*$/i", $domain_name) && //valid chars check
|
|
preg_match("/^.{1,253}$/", $domain_name) && //overall length check
|
|
preg_match("/^[^\.]{1,63}(\.[^\.]{1,63})*$/", $domain_name)); //length of each label
|
|
}
|
|
|
|
?>
|