Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
function isValidSubdomain($host){
$host=str_replace("http://", '', strtolower($host));
$hostParts=explode('.', $host);
if(count($hostParts)==3&&$hostParts[0]!='www')return true;
return false;
}
Возвращает false, в случае, если домен как раз явлется доменом 2-ого уровня, ну да не это главное......
function isValidSubdomain($host){
$host=str_replace("http://", '', strtolower($host));
$hostParts=explode('.', $host);
if(count($hostParts)==3&&$hostParts[0]!='www')return true;
return false;
}